Enhance product styling and menu adjustments

- Updated product basket styles to improve price visibility.
- Set regular price font size to zero, with strikethrough for deleted prices.
- Adjusted menu styles for better layout, including margin reset.
- Modified mobile menu to utilize full viewport width.
- Added styles to hide search icon in small search menu items.
This commit is contained in:
Roman Pyrih
2025-05-29 14:34:18 +02:00
parent 68ef10b959
commit c756f2a44d
3 changed files with 29 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1105,6 +1105,23 @@ footer.footer {
position: relative; position: relative;
z-index: 1; z-index: 1;
} }
.product {
.product__basket {
.price_extended {
em.color {
color: #9d343b;
}
}
.price__regular {
font-size: 0;
del {
font-size: 20px;
}
}
}
}
} }
header { header {
@@ -1227,6 +1244,7 @@ div.menu {
height: 40px !important; height: 40px !important;
min-height: 40px !important; min-height: 40px !important;
line-height: 40px !important; line-height: 40px !important;
margin: 0 !important;
} }
ul.menu-list { ul.menu-list {
@@ -1274,6 +1292,8 @@ div.menu {
} }
ul.menu-mobile { ul.menu-mobile {
max-width: 100svw;
li.menu-mobile-li { li.menu-mobile-li {
a { a {
&:hover { &:hover {
@@ -1316,6 +1336,13 @@ div.menu {
filter: invert(0.9); filter: invert(0.9);
} }
} }
&.small-search {
a {
&::before {
display: none !important;
}
}
}
&.small-cart { &.small-cart {
img { img {
display: inline-block; display: inline-block;