Increase item cart height in mobile view (Fixes #8827) (#8846)

This commit is contained in:
Faris Ansari 2017-05-16 07:29:15 +05:30 committed by Nabin Hait
parent 7bf810300e
commit 125996e21c
2 changed files with 9 additions and 0 deletions

View File

@ -270,6 +270,11 @@ body[data-route="pos"] .item-cart-items {
border: 1px solid #d1d8dd;
border-top: none;
}
@media (max-width: 767px) {
body[data-route="pos"] .item-cart-items {
height: 30vh;
}
}
body[data-route="pos"] .no-items-message {
min-height: 200px;
display: flex;

View File

@ -321,6 +321,10 @@ body[data-route="pos"] {
overflow: auto;
border: 1px solid @border-color;
border-top: none;
@media (max-width: @screen-xs) {
height: 30vh;
}
}
.no-items-message {