Files
inventory-plus-plus/internal/site/styles/borders.css
T
2026-01-06 19:42:21 -07:00

35 lines
556 B
CSS

@theme inline {
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
}
@layer base {
header,
footer {
border-color: var(--sidebar-border);
}
header {
border-bottom-width: 1px
}
footer {
border-top-width: 1px;
}
select {
border-width: 2px;
border-color: var(--border);
border-radius: var(--radius-lg);
}
.border-thin {
border-width: 1px;
}
.border-button {
border-width: 2px;
border-radius: var(--radius-lg);
}
}