diff options
author | Siri Reiter <siri@pjones.dk> | 2022-08-18 18:19:32 +0200 |
---|---|---|
committer | Siri Reiter <siri@pjones.dk> | 2022-08-18 18:19:32 +0200 |
commit | 833a7a838c3a42f4f64db2bb4074cd4376e827a8 (patch) | |
tree | 860d20496e4a6f6b3ba1d7f4ae03ab0693fcca21 /style.scss | |
parent | d7c840dece7dd3bfe4545a410f386e43a2778dec (diff) |
use breakpoint, and also apply to pageinfo
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -32,7 +32,7 @@ h1 { width: 94%; margin: 2em 3% 0; text-align: right; - @media screen and(min-width:900px) { + @include breakpoint($wide) { z-index: -1; position: absolute; margin-top: 8em; @@ -135,6 +135,8 @@ th { #pageinfo { border-top: none; padding-left: 2em; - position: fixed; bottom: 0; + @include breakpoint($wide) { + position: fixed; + } } |