12 lines
232 B
CSS
12 lines
232 B
CSS
/* Kade is rectangular. A rounded card is an antipattern. */
|
|
:root {
|
|
--radius-none: 0px;
|
|
--radius-sm: 2px;
|
|
--radius-md: 4px;
|
|
--radius-lg: 8px;
|
|
--radius-full: 9999px;
|
|
|
|
--border-width: 1px;
|
|
--border-width-accent: 2px;
|
|
}
|