diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:21:10 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-13 17:21:10 -0800 |
| commit | ecd16748a21b7950c6d87b5a8c8d6d26f312a043 (patch) | |
| tree | d988633bc85e8e8c093b2d793343668c40a956cb /frontend/src/App.css | |
| parent | 208eb0d25d8630548191e7d9e98e3d66ef9e9d5f (diff) | |
| download | neko-ecd16748a21b7950c6d87b5a8c8d6d26f312a043.tar.gz neko-ecd16748a21b7950c6d87b5a8c8d6d26f312a043.tar.bz2 neko-ecd16748a21b7950c6d87b5a8c8d6d26f312a043.zip | |
feat(v2): add neko cat toggle for sidebar (NK-jyw7lb)
Diffstat (limited to 'frontend/src/App.css')
| -rw-r--r-- | frontend/src/App.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/frontend/src/App.css b/frontend/src/App.css index 364ac69..3463f5d 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -32,11 +32,11 @@ body { font-weight: bold; } -.dashboard-header h1 { +.dashboard-header .logo { margin: 0; - font-size: 1.2rem; - font-variant: small-caps; - text-transform: lowercase; + font-size: 2rem; + cursor: pointer; + line-height: 1; } .nav-link, @@ -62,6 +62,7 @@ body { display: flex; flex: 1; overflow: hidden; + position: relative; } .dashboard-sidebar { @@ -72,6 +73,11 @@ body { flex-direction: column; overflow-y: auto; padding: 1rem; + transition: margin-left 0.4s ease; +} + +.dashboard-sidebar.hidden { + margin-left: -15rem; } .dashboard-main { |
