mobile adjustments

This commit is contained in:
Martin Filipovic Hinrichs 2026-06-16 10:48:41 +02:00
parent 5080f38d5d
commit 3bbdbd7704
2 changed files with 26 additions and 3 deletions

View file

@ -78,7 +78,6 @@
} }
.product-detail-properties-table { .product-detail-properties-table {
font-size: 1rem; font-size: 1rem;
.properties-label { .properties-label {
@ -88,16 +87,29 @@
} }
td, th { td, th {
padding: .25rem;
@include media-breakpoint-up(md) {
padding: .25rem .75rem; padding: .25rem .75rem;
} }
} }
th {
word-break: keep-all;
}
td {
word-break: normal;
}
}
.product-detail-price-container { .product-detail-price-container {
float: left;
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
margin-right: 2rem; margin-right: 2rem;
@include media-breakpoint-up(md) {
float: left;
}
} }
.product-detail-price { .product-detail-price {

View file

@ -37,6 +37,7 @@ strong {
padding-bottom: 0; padding-bottom: 0;
.delivery { .delivery {
padding: 1rem 0;
margin: 0; margin: 0;
font-size: 15px; font-size: 15px;
} }
@ -190,6 +191,12 @@ strong {
} }
} }
.header-cart-total {
@include media-breakpoint-down(md) {
display: none;
}
}
} }
@include media-breakpoint-up(md) { @include media-breakpoint-up(md) {
@ -226,6 +233,10 @@ strong {
.nav-link { .nav-link {
font-size: inherit; font-size: inherit;
} }
@include media-breakpoint-down(lg) {
padding: 0;
}
} }
.navigation-offcanvas button.offcanvas-close { .navigation-offcanvas button.offcanvas-close {