35 lines
556 B
CSS
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);
|
|
}
|
|
}
|