MusicTopus/sass/forms.scss

41 lines
880 B
SCSS
Raw Normal View History

2022-02-18 09:15:48 +01:00
.field {
padding-top: .6rem;
2022-02-18 16:53:54 +01:00
display: flex;
flex-direction: column;
2022-02-18 11:05:10 +01:00
&.has-addons {
display: flex;
justify-content: flex-start;
2022-02-18 16:53:54 +01:00
flex-direction: row;
2022-02-18 11:05:10 +01:00
.button {
margin-bottom: 0;
2022-02-18 16:53:54 +01:00
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
2022-02-18 11:05:10 +01:00
}
}
2022-02-18 09:15:48 +01:00
label {
font-weight: 800;
}
2022-02-18 16:53:54 +01:00
input,
select {
border-radius: 0.375rem;
2022-02-18 09:15:48 +01:00
box-shadow: inset 0 .0625em .125em rgba(10,10,10,.05);
max-width: 100%;
width: 100%;
background-color: #fff;
border: 1px solid #dbdbdb !important;
color: #363636;
2022-02-18 16:53:54 +01:00
&:focus-visible {
border: 1px solid #b9b9b9 !important;
outline: unset;
}
2022-02-18 09:15:48 +01:00
}
}