item content not with fixed height and positioned absolute. Closes #1

This commit is contained in:
Daniel Pötzinger
2017-04-02 21:48:10 +02:00
parent 9966766f94
commit d994bb91ef

View File

@@ -2,7 +2,7 @@
display: flex; display: flex;
min-height: 100vh; min-height: 100vh;
width: 100vw; width: 100vw;
position: fixed; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
@@ -10,7 +10,7 @@
&__content { &__content {
box-sizing: border-box; box-sizing: border-box;
padding-top: 130px; padding-top: 130px;
height: 100vh; min-height: 100vh;
position: relative; position: relative;
} }