styling changes

This commit is contained in:
Novattz
2025-12-22 20:20:49 +01:00
parent cbf791a348
commit 6f4f53f7f5
3 changed files with 45 additions and 3 deletions

View File

@@ -79,6 +79,10 @@
letter-spacing: 1px; letter-spacing: 1px;
transition: all var(--duration-normal) var(--easing-ease-out); transition: all var(--duration-normal) var(--easing-ease-out);
svg {
color: var(--text-primary);
}
&:hover { &:hover {
background-color: rgba(255, 255, 255, 0.3); background-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px); transform: translateY(-2px);
@@ -96,15 +100,13 @@
transform: none; transform: none;
box-shadow: none; box-shadow: none;
} }
// Settings icon button variant // Settings icon button variant
&.settings-icon-button { &.settings-icon-button {
svg { svg {
transition: transform var(--duration-normal) var(--easing-ease-out); transition: transform var(--duration-normal) var(--easing-ease-out);
} }
&:hover svg { &:hover svg {
transform: rotate(90deg); transform: rotate(45deg);
} }
} }
} }

View File

@@ -50,6 +50,10 @@
opacity: 0.7; opacity: 0.7;
} }
.icon {
color: var(--text-primary);
}
.placeholder-text { .placeholder-text {
h5 { h5 {
font-size: 1.1rem; font-size: 1.1rem;

View File

@@ -60,6 +60,11 @@
color: var(--elevated-bg); color: var(--elevated-bg);
} }
} }
// Ensure icons are white when not active
&:not(.active) .filter-icon {
color: var(--text-primary);
}
} }
} }
@@ -73,6 +78,37 @@
} }
} }
.settings-button {
margin-top: auto;
&.btn.btn-secondary {
background-color: transparent;
border: 1px solid transparent;
color: var(--text-secondary);
&:hover {
background-color: rgba(255, 255, 255, 0.07);
color: var(--text-primary);
border-color: var(--border-soft);
transform: none;
box-shadow: none;
}
&:active {
transform: scale(0.98);
}
.settings-icon {
transition: transform 0.3s ease;
color: inherit;
}
&:hover .settings-icon {
transform: rotate(45deg);
}
}
}
// App logo styles // App logo styles
.app-logo { .app-logo {
display: flex; display: flex;