dotfiles/.config/eww/templates/bar/modules/workspaces.scss

29 lines
552 B
SCSS
Raw Normal View History

2023-06-09 10:34:28 +00:00
@import "$base_dir/variables.scss";
.workspaces-widget {
margin-left: .4rem;
}
.workspace-entry {
padding-left: .6rem;
padding-right: .6rem;
background-color: rgba($black, 1);
border: 1px solid $magenta;
border-radius: 4px;
}
.workspace-entry:hover {
background-color: rgba($b_black, 1);
}
.workspace-current {
background-color: rgba($yellow, 1);
color: rgba($b_black, 1);
border: 0px none;
}
.workspace-current:hover {
background-color: rgba($yellow, 1);
}