15 lines
277 B
SCSS
15 lines
277 B
SCSS
|
/* 1.1 - Alignement classes
|
||
|
* Handle easily alignement and flexboxes
|
||
|
**/
|
||
|
|
||
|
.flex-that {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.align {
|
||
|
&-center {text-align: center;text-indent: 0!important;}
|
||
|
&-left {text-align: left;}
|
||
|
&-right {text-align: right;}
|
||
|
}
|