add home meteo card

This commit is contained in:
2020-04-04 10:39:40 +02:00
parent bb4f1c5cef
commit 7bfcaa6993
18 changed files with 1411 additions and 11 deletions

View File

@@ -47,6 +47,10 @@ $base: 1rem;
justify-content: space-between;
}
.flex-shrink {
flex-shrink: 0;
}
.w-100{
width: 100%;
}
@@ -62,6 +66,10 @@ $base: 1rem;
}
@for $i from 0 through 5 {
.flex-#{$i} {
flex: $i;
}
.m-#{$i} {
margin: $i * $base;
}
@@ -122,3 +130,15 @@ $base: 1rem;
.z-10 {
z-index: 10;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}