From 28e96e0ad54d20cab7b290662985a192dc108d0f Mon Sep 17 00:00:00 2001
From: Simon Ser <contact@emersion.fr>
Date: Mon, 29 Jun 2020 09:04:01 +0200
Subject: [PATCH] Expand buffer column

In some cases it wouldn't take all of the available space.
---
 style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/style.css b/style.css
index ca31ca8..4afc663 100644
--- a/style.css
+++ b/style.css
@@ -8,7 +8,7 @@ html, body {
 body {
 	display: grid;
 	grid-template-rows: auto 1fr max-content;
-	grid-template-columns: max-content auto max-content;
+	grid-template-columns: max-content 1fr max-content;
 	font-family: monospace;
 }