diff options
author | June McEnroe <june@causal.agency> | 2020-07-13 16:01:11 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-13 16:01:11 -0400 |
commit | 77064e0ebee386d8523e2216b49f8acfb0b6d4f0 (patch) | |
tree | d616b324f79a31c8db2e4e362daa3b7e809a3cb8 | |
parent | Implement IRC ^O (diff) | |
download | scooper-77064e0ebee386d8523e2216b49f8acfb0b6d4f0.tar.gz scooper-77064e0ebee386d8523e2216b49f8acfb0b6d4f0.zip |
Add room to start selecting table rows
Diffstat (limited to '')
-rw-r--r-- | default.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/default.css b/default.css index fc790d2..610015c 100644 --- a/default.css +++ b/default.css @@ -68,8 +68,10 @@ nav ol li:first-child::before { } table { - width: 100%; border-spacing: 0; + /* Allow some room to start selecting from */ + margin-left: -2ch; + padding-left: 2ch; } tr { vertical-align: top; |