Change width vw -> width % so that stuff keeps inside the frame

This commit is contained in:
Mikko Koski 2017-03-23 11:03:13 +02:00
parent acd051ff88
commit 930bce264c
3 changed files with 4 additions and 4 deletions

View file

@ -32,6 +32,6 @@
flex-direction: column;
flex-grow: 1;
align-items: center;
width: 90vw;
width: 90%;
}

View file

@ -11,7 +11,7 @@
position: fixed;
top: 0;
left: 0;
width: 100vw;
width: 100%;
height: 100vh;
background-color: #fff;
}
@ -25,7 +25,7 @@
position: fixed;
top: 0;
left: 0;
width: 100vw;
width: 100%;
height: 100vh;
}

View file

@ -3,7 +3,7 @@
background-color: #f9f9f9;
flex-direction: row;
padding: 0 1rem;
width: 100vw;
width: 100%;
height: 80px;
justify-content: space-between;
align-items: center;