forked from M-Labs/web2019
fix(mobile): Reduces size of menu sub-items
This commit is contained in:
parent
1ac9fdd641
commit
4ebe4f253c
|
@ -4,13 +4,29 @@
|
|||
padding: 1em 1em 0;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
font-size: .75em;
|
||||
}
|
||||
|
||||
/*
|
||||
##Device = Tablets, Ipads (portrait)
|
||||
##Screen = B/w 768px to 1024px
|
||||
*/
|
||||
@media (min-width: 768px) and (max-width: 1080px) {
|
||||
.logo > img {
|
||||
height: 20px;
|
||||
}
|
||||
.navbar {
|
||||
padding-top: 5px !important;
|
||||
padding-bottom: 5px !important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: .8rem;
|
||||
font-size: .7rem;
|
||||
}
|
||||
|
||||
#root-shop, #root-shop>div {
|
||||
height: calc(100vh - 50px);
|
||||
}
|
||||
|
||||
#root-shop .productItem {
|
||||
|
@ -91,6 +107,22 @@
|
|||
##Screen = B/w 768px to 1024px
|
||||
*/
|
||||
@media (min-width: 768px) and (max-width: 1080px) and (orientation: landscape) {
|
||||
.logo > img {
|
||||
height: 20px;
|
||||
}
|
||||
.navbar {
|
||||
padding-top: 5px !important;
|
||||
padding-bottom: 5px !important;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: .7rem;
|
||||
}
|
||||
|
||||
#root-shop, #root-shop>div {
|
||||
height: calc(100vh - 50px);
|
||||
}
|
||||
|
||||
#root-shop .mobileBtnDisplaySideMenu,
|
||||
#root-shop .mobileCloseMenu {
|
||||
display: none !important;
|
||||
|
|
Loading…
Reference in New Issue