funkwhale/front/src/components/ui/button/play.scss

41 lines
824 B
SCSS

.funkwhale {
&.play-button {
@include light-theme {
--fw-bg-color: var(--fw-red-010) !important;
--fw-text-color: var(--fw-gray-600) !important;
&:hover {
--fw-text-color: var(--fw-pastel-4, var(--fw-primary)) !important;
}
}
@include dark-theme {
--fw-bg-color: var(--fw-gray-800) !important;
--fw-text-color: var(--fw-gray-300) !important;
&:hover {
--fw-text-color: var(--fw-pastel-2, var(--fw-blue-400)) !important;
}
}
will-change: transform;
font-size: 0.6rem !important;
padding: 0.625em !important;
border: 0px !important;
i {
font-size: 2rem;
&::before {
transform: translateX(1px);
backface-visibility: hidden;
}
}
&:hover {
--fw-scale: 1.091;
}
}
}