redesign album detail page

This commit is contained in:
jeffvli
2025-11-20 03:47:56 -08:00
parent e95e84e37c
commit ab3e7caad1
14 changed files with 662 additions and 301 deletions
@@ -14,3 +14,80 @@
opacity: 0.6;
}
}
.button.unthemed {
@mixin light {
color: white;
background: black;
svg {
color: white;
fill: white;
}
&:hover {
background: lighten(black, 10%);
}
}
@mixin dark {
color: black;
background: white;
svg {
color: black;
fill: black;
}
&:hover {
background: darken(white, 20%);
}
}
}
.wide-button {
padding-right: var(--theme-spacing-xl);
padding-left: var(--theme-spacing-xl);
background: white;
border-radius: var(--theme-radius-xl);
transition: background-color 0.2s ease-in-out;
}
.wide-button.unthemed {
@mixin light {
background: black;
svg {
color: white;
fill: white;
}
&:hover {
background: lighten(black, 10%);
}
}
@mixin dark {
background: white;
svg {
color: black;
fill: black;
}
&:hover {
background: darken(white, 20%);
}
}
}
.wide-button-label {
font-size: var(--theme-font-size-md);
font-weight: 600;
color: black;
svg {
color: black;
fill: black;
}
}