25 lines
226 B
CSS
25 lines
226 B
CSS
:root {
|
|
background-color: white;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.Header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
h1 {
|
|
align-self: center;
|
|
}
|
|
|
|
input {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
|
|
|
|
|