exclude products over clic limit from eboutic

This commit is contained in:
imperosol
2026-05-14 12:28:59 +02:00
parent 2d135cdf6b
commit 62900b8c2e
7 changed files with 29 additions and 21 deletions
+6 -1
View File
@@ -29,7 +29,12 @@
align-items: center;
gap: 20px;
&.clickable:hover {
&:disabled {
background-color: darken($primary-neutral-light-color, 5%);
opacity: 65%;
}
&.clickable:not(:disabled):hover {
background-color: darken($primary-neutral-light-color, 5%);
}
+1 -1
View File
@@ -23,7 +23,7 @@
border-radius: 5px;
color: black;
&:hover {
&:not(.link-like):not(:disabled):hover {
background: hsl(0, 0%, 83%);
}
}