blob: dab15a33957a63b29af33b914103ae5150f901ec (
plain) (
blame)
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
|
.Main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100dvh;
}
.SearchBar {
display: flex;
align-items: center;
border-radius: 10px;
background: #1f1f1f;
margin-top: -10px;
border-style: dotted;
border-color: rgb(63, 63, 63);
border-width: 2px;
}
.SearchBar input {
background: none;
outline: none;
border: none;
margin-left: 5px;
padding: 4px;
width: 100%;
color: white;
font-family: "Kanit";
font-size: 16px;
}
|