add hover to rounded button

This commit is contained in:
Justin Cooper 2025-02-10 09:30:26 -06:00
parent 6fd16f42dc
commit 149810627e

View file

@ -1,3 +1,5 @@
@use "sass:color";
@mixin readable-content {
display: grid;
grid-template-columns:
@ -20,8 +22,8 @@
background-color: #63338f;
&:hover {
color: #000;
background-color: #fff;
color: #fff;
background-color: color.adjust(#63338f, $lightness: -10%, $space: hsl);
}
}