More positioning and global style rules.

This commit is contained in:
2020-09-06 22:32:30 +02:00
parent ace222749a
commit 2cc5c81df6
2 changed files with 55 additions and 1 deletions

View File

@@ -153,6 +153,44 @@ textarea {
}
}
.cursor {
&-pointer {
cursor: pointer;
}
}
.text-center {
text-align: center;
}
.vin-link {
font-weight: bold;
border-bottom: 1px solid #ff5fff;
font-size: 1rem;
margin-left: 15px;
}
.margin-top {
&-md {
margin-top: 3rem;
}
}
.margin-bottom {
&-md {
margin-bottom: 3rem;
}
&-sm {
margin-bottom: 1rem;
}
&-0 {
margin-bottom: 0;
}
}
.no-margin {
margin: 0 !important;
}

View File

@@ -1,7 +1,23 @@
.flex {
display: flex;
&-column {
& .column {
flex-direction: column;
}
& .row {
flex-direction: row;
}
& .wrap {
flex-wrap: wrap;
}
&.justify-center {
justify-content: center;
}
&.align-center {
align-items: center;
}
}