diff options
Diffstat (limited to '')
-rw-r--r-- | assets/css/shell.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/assets/css/shell.css b/assets/css/shell.css index b9c8b97..fcfa5d1 100644 --- a/assets/css/shell.css +++ b/assets/css/shell.css @@ -15,9 +15,17 @@ .shell > div { display: flex; + overflow: auto; +} +.shell-mark { + /* Don't shrink it. */ + flex: none; } .shell-cmd { - flex: 2; + flex: 1; + /* The combination of overflow values disables the scrollbar for .shell-cmd + * and assigns it to the outer div instead, which looks nicer. */ + overflow: visible; } /* Styling, yo. */ |