Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rhazdon/hugo-theme-hello-friend-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorStephen Crane <sjc@immunant.com>2019-08-16 02:11:26 +0300
committerStephen Crane <sjc@immunant.com>2019-08-16 02:11:26 +0300
commitbcf6253accb5f475518b23cbcad6b97ad0b3ebbc (patch)
tree9e9877fbaf96302dc5e0d1ab702e4f0e243e9971 /assets
parent091ba7b1d2836ebf1defa1908020524174df6353 (diff)
Set container flex-basis to auto
Without flex-basis: auto, IE overlays the footer on top of long pages of text, as its position seems to be computed relative to the initial viewport.
Diffstat (limited to 'assets')
-rw-r--r--assets/scss/_main.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/scss/_main.scss b/assets/scss/_main.scss
index ea22bbf..0c1824b 100644
--- a/assets/scss/_main.scss
+++ b/assets/scss/_main.scss
@@ -222,7 +222,7 @@ ol ol {
}
.container {
- flex: 1;
+ flex: 1 auto;
display: flex;
flex-direction: column;
justify-content: center;