fix(mobile): Reduces size of menu sub-items

master
sovanna 2020-01-02 14:44:21 +01:00
parent 1ac9fdd641
commit 4ebe4f253c
1 changed files with 33 additions and 1 deletions

View File

@ -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;