Skip to content

Commit

Permalink
move beta config to defs
Browse files Browse the repository at this point in the history
  • Loading branch information
phucbm committed Jun 16, 2022
1 parent 8772a51 commit e11b892
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
27 changes: 0 additions & 27 deletions scss/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,4 @@ $colors: (
"gray": '#f6f6f6',
light-blue: '#115df7',
dark-blue: '#21297d'
);

// breakpoints
$breakpoints: (
"lg": 1180px,
"md": 1023px,
"sm": 767px,
);

// font sizes
$font-sizes: (
"values": 0 1 2 4 6 8 12 16 24 32 48 64 96 128,
);

// spacing values (for margin and padding, x for left/right. y for top/bottom)
$spacing_values: (
"x":(
"values": 0
),
"y":(
"values": 0
),
);

// coordinate values (for position top, right, bottom left)
$coordinate_values: (
"values": 0 50%
);
29 changes: 28 additions & 1 deletion scss/_defs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,31 @@ $replace_prop: (
);

// variables
$variables: ();
$variables: ();

// breakpoints
$breakpoints: (
"lg": 1180px,
"md": 1023px,
"sm": 767px,
);

// font sizes
$font-sizes: (
"values": 0 1 2 4 6 8 12 16 24 32 48 64 96 128,
);

// spacing values (for margin and padding, x for left/right. y for top/bottom)
$spacing_values: (
"x":(
"values": 0
),
"y":(
"values": 0
),
);

// coordinate values (for position top, right, bottom left)
$coordinate_values: (
"values": 0 50%
);

0 comments on commit e11b892

Please sign in to comment.