mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
wip: add margin-bottom on select element
This commit is contained in:
parent
c1ab57d952
commit
f1901ea84c
2 changed files with 5 additions and 1 deletions
|
@ -150,7 +150,8 @@ input[type="url"], textarea {
|
|||
font-family: inherit;
|
||||
font-size: 14px;
|
||||
height: 32px;
|
||||
margin: 0 0 14px;
|
||||
margin: 0;
|
||||
margin-bottom: var(--box-margin);
|
||||
padding: 7px;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -220,6 +221,7 @@ select {
|
|||
height: 28px;
|
||||
line-height: 28px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: var(--box-margin);
|
||||
}
|
||||
.dark select {
|
||||
color: #efefef;
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
--control-size: 36px;
|
||||
--border-radius: 4px;
|
||||
--box-padding: 20px;
|
||||
--box-margin: 14px;
|
||||
}
|
||||
.dark {
|
||||
--background-color: var(--color-darkGray);
|
||||
|
@ -43,5 +44,6 @@
|
|||
@media only screen and (max-width:770px) {
|
||||
:root {
|
||||
--box-padding: 10px;
|
||||
--box-margin: 7px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue