nixos-configs/nixosModules/ags/config/widgets/bluetooth/_index.scss

33 lines
675 B
SCSS
Raw Normal View History

2024-12-04 00:18:11 -05:00
@use 'sass:color';
@use '../../style/colors';
.bluetooth {
margin-top: 0;
2024-12-04 23:29:00 -05:00
* {
font-size: 20px;
}
row {
all: unset;
}
2024-12-04 00:18:11 -05:00
.toggle-button {
padding: 4px;
min-width: 30px;
min-height: 30px;
2024-12-04 00:18:11 -05:00
transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
box-shadow: 2px 1px 2px colors.$accent-color;
margin: 4px 4px 4px 4px;
background-color: colors.$window_bg_color;
2024-12-04 00:18:11 -05:00
&.active {
box-shadow: 0 0 0 white;
margin: 6px 4px 2px 4px;
background-color: color.adjust(colors.$window_bg_color, $lightness: -3%);
}
}
}