1
1
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:
Shawn Allen 2019-10-31 15:21:54 -07:00
parent 8b0f3eee3f
commit ce4904461f
2 changed files with 12 additions and 10 deletions

View File

@ -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

View File

@ -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 {