🆙 Fixed Multiple SCSS-isms ended up inside plain .css

This commit is contained in:
duckietm
2026-05-06 10:48:09 +02:00
parent f6b7a3c9d7
commit 7396413f11
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -153,16 +153,16 @@
&.active { &.active {
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
background: rgba(#fff, 0.5); background: rgba(255, 255, 255, 0.5);
border-bottom: 1px solid rgba(#000, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2);
} }
.nitro-card-accordion-set-header { .nitro-card-accordion-set-header {
border-bottom: 1px solid rgba(#000, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2);
} }
} }
@include media-breakpoint-down(lg) { @media (max-width: 991.98px) {
.nitro-card { .nitro-card {
resize: none !important; resize: none !important;
max-width: calc(100vw - 16px) !important; max-width: calc(100vw - 16px) !important;
+4 -4
View File
@@ -65,7 +65,7 @@
background: transparent; background: transparent;
padding: 3px 0px; padding: 3px 0px;
color: #FFF; color: #FFF;
border-color: rgba(#000, 0.3); border-color: rgba(0, 0, 0, 0.3);
cursor: pointer; cursor: pointer;
&:hover { &:hover {
@@ -137,9 +137,9 @@
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
font-size: large; font-size: large;
background: rgba(#000, 0.95); background: rgba(0, 0, 0, 0.95);
box-shadow: inset 0px 5px lighten(rgba(#000, .6), 2.5), inset 0 -4px darken(rgba(#000, .6), 4); box-shadow: inset 0px 5px rgba(10, 10, 10, 0.6), inset 0 -4px rgba(0, 0, 0, 0.6);
border-radius: $border-radius; border-radius: 0.375rem;
transition: all 0.2s ease; transition: all 0.2s ease;
z-index: 21; z-index: 21;