mirror of
https://github.com/primer/css.git
synced 2024-12-15 23:43:51 +03:00
move $display-values from utilities to support/variables/layout
This commit is contained in:
parent
8b0f3eee3f
commit
ce4904461f
@ -1,5 +1,17 @@
|
||||
// Layout variables
|
||||
|
||||
// these are values for the display CSS property
|
||||
$display-values: (
|
||||
block,
|
||||
flex,
|
||||
inline,
|
||||
inline-block,
|
||||
inline-flex,
|
||||
none,
|
||||
table,
|
||||
table-cell
|
||||
) !default;
|
||||
|
||||
// These are our margin and padding utility spacers. The default step size we
|
||||
// use is 8px. This gives us a key of:
|
||||
// 0 => 0px
|
||||
|
@ -1,14 +1,4 @@
|
||||
// Visibility and display utilities
|
||||
$display-values: (
|
||||
block,
|
||||
flex,
|
||||
inline,
|
||||
inline-block,
|
||||
inline-flex,
|
||||
none,
|
||||
table,
|
||||
table-cell
|
||||
);
|
||||
|
||||
// Responsive display utilities
|
||||
@each $breakpoint, $variant in $responsive-variants {
|
||||
|
Loading…
Reference in New Issue
Block a user