diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-03-25 22:28:59 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-03-25 22:28:59 +0100 |
commit | 577ef97bbfa01d0e9a233cd11c9bb7bd96f4c9b2 (patch) | |
tree | 497d998c17ad322d671657973ba3b91810af3ec4 /asset-sources/theme.scss | |
parent | 43528e882667f2d6692f0f0e14f18338d3dac7de (diff) | |
download | fietsboek-577ef97bbfa01d0e9a233cd11c9bb7bd96f4c9b2.tar.gz fietsboek-577ef97bbfa01d0e9a233cd11c9bb7bd96f4c9b2.tar.bz2 fietsboek-577ef97bbfa01d0e9a233cd11c9bb7bd96f4c9b2.zip |
first working admin site size stats
Still needs a bit of a design touchup and proper localozation.
Also opens up the way for a cleaner admin interface and proper
user/track lists in the admin panel.
Diffstat (limited to 'asset-sources/theme.scss')
-rw-r--r-- | asset-sources/theme.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/asset-sources/theme.scss b/asset-sources/theme.scss index 7f89bf6..2fcb278 100644 --- a/asset-sources/theme.scss +++ b/asset-sources/theme.scss @@ -284,6 +284,26 @@ strong { text-align: center; } +/* Admin view layout: We have an extra sidebar for the navigation */ +#adminContainer { + display: grid; + grid-template-areas: "sidebar main"; + grid-template-columns: 1fr 5fr; + gap: 1rem; +} + +#adminNavigation { + grid-area: sidebar; +} + +#adminContent { + grid-area: main; +} + +.admin-stat { + font-size: 120%; +} + .list-group.list-group-root { padding: 0; overflow: hidden; |