mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-07-02 20:47:14 -04:00
18 lines
329 B
SCSS
18 lines
329 B
SCSS
|
|
$border-radius-sm: 8dp;
|
|
$border-radius-md: 12dp;
|
|
// modals/pages
|
|
$border-radius-lg: 16dp;
|
|
|
|
$border-radius-modal: $border-radius-lg;
|
|
|
|
@mixin border($col: $color-border) {
|
|
border-color: $col;
|
|
border-width: space(1);
|
|
}
|
|
|
|
@mixin border-top($col: $color-border) {
|
|
border-top-color: $col;
|
|
border-top-width: space(1);
|
|
}
|