nixos-configs/modules/ags/config/widgets/network/_index.scss

33 lines
680 B
SCSS
Raw Permalink Normal View History

2024-12-19 17:46:57 -05:00
@use 'sass:color';
@use '../../style/colors';
.network.widget {
margin-top: 0;
* {
font-size: 20px;
}
row {
all: unset;
}
.toggle-button {
padding: 4px;
min-width: 30px;
min-height: 30px;
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;
&.active {
box-shadow: 0 0 0 white;
margin: 6px 4px 2px 4px;
background-color: color.adjust(colors.$window_bg_color, $lightness: -3%);
}
}
}