Header.scss
664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
.header {
width: 100%;
height: 90px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1.8rem;
.form-container {
width: 200px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
#id-input {
height: 100%;
text-align: center;
font-size: 21px;
border: none;
&:focus {
outline: none;
}
}
button {
width: 100%;
margin: 8px 0;
padding: 6px;
background-color: deepskyblue;
color: #efefef;
border: none;
border-radius: 6px;
}
}
}