33 lines
523 B
SCSS
Executable File
33 lines
523 B
SCSS
Executable File
@use 'variables';
|
|
|
|
$utilities: (
|
|
'border': (
|
|
property: border,
|
|
class: b,
|
|
values: variables.$borders
|
|
),
|
|
'border-top': (
|
|
property: border-top,
|
|
class: b-t,
|
|
values: variables.$borders
|
|
),
|
|
'border-bottom': (
|
|
property: border-bottom,
|
|
class: b-b,
|
|
values: variables.$borders
|
|
),
|
|
'border-left': (
|
|
property: border-left,
|
|
class: b-l,
|
|
values: variables.$borders
|
|
),
|
|
'border-right': (
|
|
property: border-right,
|
|
class: b-r,
|
|
values: variables.$borders
|
|
),
|
|
|
|
);
|
|
|
|
|