create register page

This commit is contained in:
memeriau
2021-11-28 00:31:57 +01:00
parent ae9c88bbf0
commit 03ffae47a6
10 changed files with 204 additions and 7 deletions

View File

@@ -16,7 +16,7 @@
@include flex-center;
}
@mixin page-content-wrapper {
@mixin page-content-wrapper($desktopWidth: 400px) {
margin: 10px;
padding: 10px;
background-color: $color-white;
@@ -25,6 +25,6 @@
@include desktop {
padding: 20px;
width: 400px;
width: $desktopWidth;
}
}

View File

@@ -2,6 +2,12 @@ body,
h1,
div,
input,
button {
textarea,
button,
dl,
dt,
dd {
box-sizing: border-box;
margin: 0;
padding: 0;
}