feat: New variants
- Add flex inline placeholder - Add hr vertical class
This commit is contained in:
parent
c268f4fdca
commit
1a3c25d8b5
2 changed files with 23 additions and 0 deletions
|
|
@ -67,6 +67,13 @@ hr {
|
|||
border-width: $width_border_basic 0 0;
|
||||
border-style: solid;
|
||||
border-color: $color_border_basic;
|
||||
|
||||
&.vertical {
|
||||
display: inline;
|
||||
height: $line_basic;
|
||||
margin: 0 $space_double;
|
||||
border-width: 0 $width_border_basic 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.hr_hidden {
|
||||
|
|
@ -286,6 +293,10 @@ div {}
|
|||
// Flex
|
||||
.flex {
|
||||
display: flex;
|
||||
|
||||
&.inline {
|
||||
@extend %flex-inline;
|
||||
}
|
||||
}
|
||||
|
||||
.flex_wrap {
|
||||
|
|
|
|||
|
|
@ -173,6 +173,18 @@
|
|||
|
||||
|
||||
|
||||
// Flex & grid
|
||||
// -----------------------------------------------------------------------------
|
||||
%flex-inline {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
gap: $space_half $space_basic;
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Positioned elements
|
||||
// -----------------------------------------------------------------------------
|
||||
%viewport_fixed {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue