diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-16 12:59:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 12:59:21 -0400 |
commit | c3f6983009c3570851541321a691d1d5e3735766 (patch) | |
tree | e621666bc95db2833de6a9be021b2caad47472a7 /src/SMAPI.Web/wwwroot/Content/css | |
parent | 9ba06704077c32f84aa4c4aeff8b75e66e1c0486 (diff) | |
parent | 64b9da560fcde5696b27126adbc45e8331f1cc70 (diff) | |
download | SMAPI-c3f6983009c3570851541321a691d1d5e3735766.tar.gz SMAPI-c3f6983009c3570851541321a691d1d5e3735766.tar.bz2 SMAPI-c3f6983009c3570851541321a691d1d5e3735766.zip |
Merge pull request #840 from KhloeLeclair/log-cleanup
[Website] Cleanup log filtering a bit more, save state to URL
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/css')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/main.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/css/main.css b/src/SMAPI.Web/wwwroot/Content/css/main.css index dcc7a798..a0a407d8 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/main.css +++ b/src/SMAPI.Web/wwwroot/Content/css/main.css @@ -97,6 +97,22 @@ a { margin-left: 1em; } +/* quick navigation */ + +#quickNav { + position: fixed; + bottom: 3em; + width: 12em; +} + +@media (max-height: 400px) { + #quickNav { + position: unset; + width: auto; + } +} + + /* footer */ #footer { margin: 1em; @@ -111,11 +127,16 @@ a { /* mobile fixes */ @media (min-width: 1020px) and (max-width: 1199px) { + #quickNav, #sidebar { width: 7em; background: none; } + #quickNav h4 { + width: unset; + } + #content-column { left: 7em; } @@ -138,4 +159,9 @@ a { top: inherit; left: inherit; } + + #quickNav { + position: unset; + width: auto; + } } |