Farmbot-Web-App/frontend/css/_mobile.scss

41 lines
662 B
SCSS
Raw Normal View History

2019-04-11 21:17:18 -06:00
@media screen and (max-width: 1075px) {
2017-07-07 02:39:41 -06:00
.all-content-wrapper {
2017-07-26 13:01:21 -06:00
padding: 11rem 0 0;
2017-07-25 14:08:04 -06:00
overflow: hidden;
2017-07-07 02:39:41 -06:00
}
.nav-group {
2017-07-07 03:52:39 -06:00
padding: 0 1.6rem 0 0 !important;
}
.mobile-menu-icon {
padding: 1.7rem 0 0 1.6rem;
font-size: 2rem;
color: $white;
}
.mobile-menu {
2018-09-13 14:26:53 -06:00
z-index: 9999;
2017-07-07 03:52:39 -06:00
background: $dark_gray;
color: $white;
height: 100vh;
outline: none;
animation: slide-in 0.2s;
2017-07-24 07:01:33 -06:00
width: 24rem;
2017-07-07 03:52:39 -06:00
}
}
@keyframes slide-in {
0% {
transform: translateX(-11rem)
}
100% {
transform: translateX(0)
2017-07-07 02:39:41 -06:00
}
2017-09-03 00:07:38 -06:00
}
2019-04-12 20:50:25 -06:00
.controls-page {
@media (min-width:992px) {
.col-md-offset-1 {
margin-left: 5%;
}
}
}