35 lines
473 B
CSS
35 lines
473 B
CSS
.search-container {
|
|
width: 100%;
|
|
padding-right: 10px;
|
|
padding-left: 10px;
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.search-label {
|
|
margin-left: 5px;
|
|
color: var(--input);
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.search-input {
|
|
color: var(--input);
|
|
}
|
|
|
|
.bg-dark {
|
|
background-color: #282c34;
|
|
height: 100%;
|
|
}
|
|
|
|
.list-container {
|
|
justify-items: center;
|
|
}
|
|
|
|
.item-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.loader {
|
|
text-align: center;
|
|
} |