finish register special

This commit is contained in:
2020-03-22 17:44:43 +01:00
parent 3f96cc6fe3
commit 18d0841a7d
34 changed files with 2190 additions and 118 deletions

View File

@@ -17,7 +17,8 @@ $light: #D6CE15;
$primary: $mediumDark;
$secondary: #000;
$interactive: #000;
$error: #000;
$success: green;
$error: red;
$disabled: #000;
$font: $black;

View File

@@ -29,7 +29,7 @@ $base: 1rem;
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.flex-end {
@@ -56,7 +56,7 @@ $base: 1rem;
padding-right: auto;
}
@for $i from 1 through 5 {
@for $i from 0 through 5 {
.m-#{$i} {
margin: $i * $base;
}

View File

@@ -4,10 +4,12 @@ body {
margin: 0;
}
div,
input,
nav,
aside {
* {
box-sizing: border-box;
}
@for $i from 1 through 6 {
h#{$i} {
margin: 0;
}
}