move files to scss

creating this commit so git don't lose track of the changes
This commit is contained in:
Guilherme Danno
2020-05-16 00:32:32 -03:00
parent db73f56860
commit 594580ec2d
8 changed files with 29 additions and 34 deletions
+47
View File
@@ -0,0 +1,47 @@
.flex {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.flex-direction-column {
flex-direction: column;
}
.flex-direction-row {
flex-direction: row;
}
.flex-grow {
flex-grow: 1;
}
.flex-shrink-zero {
flex-shrink: 0;
}
.align-items-center {
align-items: center;
}
.align-items-flex-start {
align-items: flex-start;
}
.justify-content-center {
justify-content: center;
}
.justify-content-flex-end {
justify-content: flex-end;
}
.flex-wrap-wrap {
flex-wrap: wrap;
}
.align-self-flex-end {
align-self: flex-end;
}