feat(release banner): hide on small screens, move below

This commit is contained in:
Sergey Andrievskiy 2018-10-02 15:59:14 +03:00
parent 2f43a538df
commit 3cd9270a73

View file

@ -4,7 +4,7 @@
position: fixed;
@include nb-ltr(right, 1.5rem);
@include nb-rtl(left, 1.5rem);
top: 8vh;
top: 40vh;
border-radius: 5px;
box-shadow: 0 5px 12px 0 rgba(0, 32, 128, 0.14);
z-index: 99999999;
@ -55,4 +55,8 @@
text-transform: uppercase;
font-weight: 600;
}
@media screen and (max-width: 63rem) {
display: none;
}
}