feat(ags): add 5 possible workspaces to widget
This commit is contained in:
parent
b74db6f1fa
commit
3272376fd7
2 changed files with 4 additions and 4 deletions
|
@ -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})),
|
||||
}),
|
||||
})],
|
||||
});
|
||||
|
|
|
@ -16,15 +16,15 @@
|
|||
|
||||
.empty {
|
||||
border: none;
|
||||
transition: border-color 0.3s ease-in-out;
|
||||
transition: border-color 0.25s linear;
|
||||
}
|
||||
.occupied {
|
||||
border: 2px solid $bg;
|
||||
background: $contrastbg;
|
||||
transition: border-color 0.3s ease-in-out;
|
||||
transition: border-color 0.25s linear;
|
||||
}
|
||||
.active {
|
||||
border: 2px solid #50fa7b;
|
||||
transition: border-color 0.3s ease-in-out;
|
||||
transition: border-color 0.25s linear;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue