32 lines
339 B
SCSS
32 lines
339 B
SCSS
:root {
|
|
background-color: white;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.Header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
h1 {
|
|
margin: auto;
|
|
align-self: center;
|
|
}
|
|
|
|
input {
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
align-self: flex-end;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|