You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ass/tailwind.css

33 lines
472 B

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {}
@layer components {
.setup-text-section-header {
@apply text-2xl font-bold font-mono;
}
.setup-text-item-title {
@apply text-stone-300;
}
.setup-text-optional {
@apply text-stone-400 italic;
}
.setup-panel {
@apply flex flex-col pt-4 w-full max-w-xs;
}
.setup-panel>sl-input {
@apply mb-4;
}
}
@layer utilities {
.flex-center {
@apply items-center justify-center;
}
}