fix dialog: fixed dialog width overflowing out of screen

fix navigation: fixed coming-soon tag getting double height on small screens
This commit is contained in:
Mahdi Dibaiee 2015-09-06 17:45:53 +04:30
parent 2929dedb6a
commit 8f6406556a
3 changed files with 8 additions and 2 deletions

View File

@ -207,6 +207,7 @@ input:checked + label::after {
}
li.coming-soon::after {
margin-right: 13px;
height: 16px;
float: right;
}
button.coming-soon {
@ -437,7 +438,8 @@ nav i {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90vw;
width: 95vw;
box-sizing: border-box;
height: auto;
padding: 1.5rem 1.7rem;
background: white;

View File

@ -8,7 +8,10 @@
transform: translate(-50%, -50%);
width: 90vw;
width: 95vw;
box-sizing: border-box;
height: auto;
padding: 1.5rem 1.7rem;

View File

@ -21,6 +21,7 @@
li.coming-soon::after {
margin-right: 13px;
height: 16px;
float: right;
}