wip: add margin-bottom on select element

This commit is contained in:
Yohan Boniface 2024-06-10 12:08:51 +02:00
parent c1ab57d952
commit f1901ea84c
2 changed files with 5 additions and 1 deletions

View file

@ -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;

View file

@ -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;
}
}