scinote-web/app/assets/stylesheets/tailwind/flyouts.css

23 lines
433 B
CSS
Raw Normal View History

2023-08-28 19:10:02 +08:00
@layer components {
.sci-flyout {
@apply w-[400px] !p-6;
}
.sci-flyout-medium {
@apply w-[600px];
}
.sci-flyout .sci-flyout-header {
@apply flex items-center mb-6;
}
.sci-flyout .sci-flyout-header .sci-flyout-title {
@apply text-xl font-bold;
}
.sci-flyout .sci-flyout-footer {
@apply flex pt-6 justify-end gap-6 border-0 border-t border-solid;
border-color: var(--sn-light-grey);
}
}