diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-07-31 19:51:07 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-07-31 19:51:07 -0400 |
commit | 5b4e72d70522eb61fd8cf2bbd619bb7ed4da2cfb (patch) | |
tree | 336fbb6bc81f78e6b469f97730ee39518feafb99 /styles/client/base.css | |
parent | aecd8926c6c7bd7bcc0751e38b4459b57a87821c (diff) |
Add table toggle
Diffstat (limited to 'styles/client/base.css')
-rw-r--r-- | styles/client/base.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/styles/client/base.css b/styles/client/base.css index 0ecba9b..51ac5fd 100644 --- a/styles/client/base.css +++ b/styles/client/base.css @@ -194,6 +194,21 @@ div.settings { opacity: 0; } +button.toggle-table { + position: absolute; + bottom: 5px; + left: 5px; + transform-origin: bottom left; + z-index: 4; +} + +button.toggle-table::before { + font-family: "IcoFont"; + font-size: xx-large; + + content: '\edb9'; +} + @keyframes slide-in { from { transform: translate(0, -100vh); |