Finish settings modal
This commit is contained in:
parent
4e2d1c5dcd
commit
94f42019df
28 changed files with 975 additions and 356 deletions
34
src/ListBox.module.css
Normal file
34
src/ListBox.module.css
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
.listBox {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
max-height: 150px;
|
||||
overflow-y: auto;
|
||||
list-style: none;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background-color: transparent;
|
||||
color: var(--textColor1);
|
||||
padding: 8px 16px;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
font-size: 15px;
|
||||
min-height: 32px;
|
||||
}
|
||||
|
||||
.option.selected {
|
||||
color: #0dbd8b;
|
||||
}
|
||||
|
||||
.option.focused {
|
||||
background-color: var(--bgColor3);
|
||||
}
|
||||
|
||||
.option.disabled {
|
||||
color: var(--textColor2);
|
||||
background-color: var(--bgColor3);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue