41 lines
No EOL
880 B
SCSS
41 lines
No EOL
880 B
SCSS
.field {
|
|
padding-top: .6rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&.has-addons {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: row;
|
|
|
|
.button {
|
|
margin-bottom: 0;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
input {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
|
|
label {
|
|
font-weight: 800;
|
|
}
|
|
input,
|
|
select {
|
|
border-radius: 0.375rem;
|
|
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;
|
|
|
|
&:focus-visible {
|
|
border: 1px solid #b9b9b9 !important;
|
|
outline: unset;
|
|
}
|
|
}
|
|
} |