* hotfix: Fix popup drag hitbox Somehow, the drags get "lost" within a button element. Converting the parent container to a div works to fix this. * refactor: Update styling
21 lines
317 B
SCSS
21 lines
317 B
SCSS
@import 'src/views/styles/base.module.scss';
|
|
|
|
@layer base {
|
|
.extensionRoot {
|
|
@import 'tailwind-compat';
|
|
}
|
|
|
|
span {
|
|
font-family: inherit;
|
|
}
|
|
}
|
|
|
|
.extensionRoot {
|
|
@apply font-sans h-full;
|
|
color: #303030;
|
|
|
|
[data-rfd-drag-handle-context-id=':r1:'] {
|
|
cursor: move;
|
|
}
|
|
}
|