adds support for split keyboard

This commit is contained in:
Michel Fedde 2025-10-13 22:51:38 +02:00
parent 725057ace8
commit e93060714c
5 changed files with 31 additions and 7 deletions

View file

@ -5,6 +5,8 @@ $border-primary: $color2;
$transparentBackground: rgba(128,128,128, 0.6);
$activeBackgroundColor: rgb(20,128,20);
* {
text-color: $foreground;
@ -55,8 +57,16 @@ element {
border-radius: $border-radius;
padding: $input-padding;
normal.active {
background-color: rgba($activeBackgroundColor, 0.25);
}
selected {
background-color: $transparentBackground;
&.active {
background-color: rgba($activeBackgroundColor, 0.6);
}
}
}