Files
ghost.sori.studio/assets/styles/tailwind.css

69 lines
970 B
CSS

@tailwind components;
@tailwind utilities;
@layer utilities {
[x-cloak] {
display: none !important;
}
.rounded-theme {
border-radius: 18px;
}
.border-brd {
border-color: var(--border);
}
.bg-bgr-tone {
background-color: var(--surface-muted);
}
.text-typ {
color: var(--text);
}
.text-typ-tone {
color: var(--text-soft);
}
.bg-accent {
background: var(--color-accent);
}
.gap-0\.75 {
gap: 0.1875rem;
}
.flex-2 {
flex: 2 1 0%;
}
.flex-3 {
flex: 3 1 0%;
}
.flex-4 {
flex: 4 1 0%;
}
.size-3\.5 {
width: 0.875rem;
height: 0.875rem;
}
.size-4 {
width: 1rem;
height: 1rem;
}
.min-w-16 {
min-width: 4rem;
}
.line-clamp-1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}