2024-01-07 22:33:22 +01:00
|
|
|
|
|
|
|
$border-radius-sm: 8dp;
|
|
|
|
$border-radius-md: 12dp;
|
|
|
|
// modals/pages
|
|
|
|
$border-radius-lg: 16dp;
|
|
|
|
|
|
|
|
$border-radius-modal: $border-radius-lg;
|
|
|
|
|
2024-01-19 20:06:06 +01:00
|
|
|
$border-width-thickness-num: 1.5;
|
|
|
|
$border-width-thickness: space($border-width-thickness-num);
|
|
|
|
|
2024-01-07 22:33:22 +01:00
|
|
|
@mixin border($col: $color-border) {
|
|
|
|
border-color: $col;
|
2024-01-19 20:06:06 +01:00
|
|
|
border-width: $border-width-thickness;
|
2024-01-07 22:33:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-top($col: $color-border) {
|
|
|
|
border-top-color: $col;
|
2024-01-19 20:06:06 +01:00
|
|
|
border-top-width: $border-width-thickness;
|
2024-01-07 22:33:22 +01:00
|
|
|
}
|