diff options
| author | s-ol <s-ol@users.noreply.github.com> | 2020-02-16 10:04:38 +0000 |
|---|---|---|
| committer | s-ol <s-ol@users.noreply.github.com> | 2020-02-16 10:04:38 +0000 |
| commit | ba94f565b2c4866e0f84021e32d43e455da3730c (patch) | |
| tree | a6ae5918b85248769620b8456f4ead0f4dd283b3 | |
| parent | link_interactive for hybrid pages (diff) | |
| download | mmm-ba94f565b2c4866e0f84021e32d43e455da3730c.tar.gz mmm-ba94f565b2c4866e0f84021e32d43e455da3730c.zip | |
styling fixes?
| -rw-r--r-- | scss/_browser.scss | 4 | ||||
| -rw-r--r-- | scss/_footer.scss | 7 | ||||
| -rw-r--r-- | scss/_header.scss | 5 |
3 files changed, 14 insertions, 2 deletions
diff --git a/scss/_browser.scss b/scss/_browser.scss index 48af7d4..3b0cd89 100644 --- a/scss/_browser.scss +++ b/scss/_browser.scss @@ -9,7 +9,7 @@ display: flex; flex-direction: column; - flex: 1 1 0; + flex: 1 0 auto; min-width: 0; &.inspector { @@ -124,7 +124,7 @@ } .content { - flex: 1 1 auto; + flex: 1 0 auto; overflow: auto; padding: 1em 2em; margin: 0 1em; diff --git a/scss/_footer.scss b/scss/_footer.scss index 6cd73c8..721ff12 100644 --- a/scss/_footer.scss +++ b/scss/_footer.scss @@ -5,6 +5,13 @@ footer { position: sticky; bottom: 0; + + @include media-medium() { + position: initial; + } + @include media-small() { + position: initial; + } @media print { position: absolute; diff --git a/scss/_header.scss b/scss/_header.scss index fd3aec3..a51457f 100644 --- a/scss/_header.scss +++ b/scss/_header.scss @@ -30,6 +30,11 @@ header { height: 5rem; } + @include media-small() { + font-size: 2rem; + line-height: 5rem + } + .sun { height: 100%; stroke: currentColor; |
