feat(ags): add 5 possible workspaces to widget

This commit is contained in:
matt1432 2023-09-04 17:13:43 -04:00
parent b74db6f1fa
commit 3272376fd7
2 changed files with 4 additions and 4 deletions

View file

@ -58,7 +58,7 @@ export const Workspaces = props => Box({
}); });
}]], }]],
children: Array.from({ length: 10 }, (_, i) => i + 1).map(i => Workspace({ i: i})), children: Array.from({ length: 15 }, (_, i) => i + 1).map(i => Workspace({ i: i})),
}), }),
})], })],
}); });

View file

@ -16,15 +16,15 @@
.empty { .empty {
border: none; border: none;
transition: border-color 0.3s ease-in-out; transition: border-color 0.25s linear;
} }
.occupied { .occupied {
border: 2px solid $bg; border: 2px solid $bg;
background: $contrastbg; background: $contrastbg;
transition: border-color 0.3s ease-in-out; transition: border-color 0.25s linear;
} }
.active { .active {
border: 2px solid #50fa7b; border: 2px solid #50fa7b;
transition: border-color 0.3s ease-in-out; transition: border-color 0.25s linear;
} }
} }