Change dragged tab styling

This commit is contained in:
K Simmons 2022-08-23 18:02:01 -07:00
parent 5c38021a4d
commit 0a97a9c0fd
4 changed files with 36 additions and 17 deletions

View file

@ -94,3 +94,11 @@ export function popoverShadow(theme: Theme) {
offset: [1, 2],
};
}
export function draggedShadow(theme: Theme) {
return {
blur: 6,
color: theme.shadow,
offset: [1, 2],
};
}