nix/module/desktop/waybar/style/Workspace.nix

13 lines
205 B
Nix
Raw Normal View History

2024-05-02 04:47:21 +03:00
{ style, ... }: {
text = ''
#workspaces button {
2024-05-02 12:59:31 +03:00
padding: 0 4px;
border-top: 2px solid transparent;
2024-05-02 04:47:21 +03:00
}
#workspaces button.focused {
border-top: 2px solid #${style.color.accent};
}
'';
}