rentgen/options.scss

79 wiersze
1.6 KiB
SCSS

@import './styles/colors.scss';
2022-01-23 20:42:49 +00:00
.options-container {
padding-top: 0.5rem;
span {
2022-02-02 09:33:09 +00:00
color: $ultra-black-color;
2022-01-23 20:42:49 +00:00
font-size: 0.875rem;
font-weight: 600;
}
fieldset {
2022-01-24 11:50:54 +00:00
padding: 0.5rem 0 1rem;
2022-01-23 20:42:49 +00:00
border: none;
display: flex;
flex-flow: column;
.label-checkbox {
cursor: pointer;
margin-left: 0.5rem;
2022-04-15 11:58:29 +00:00
font-size: 0.875rem;
font-weight: 500;
2022-01-23 20:42:49 +00:00
}
2022-01-24 11:50:54 +00:00
.input-container {
2022-04-15 11:58:29 +00:00
font-size: 0.875rem;
font-weight: 500;
2022-01-24 11:50:54 +00:00
padding-bottom: 0.25rem;
2022-01-23 20:42:49 +00:00
}
#minValueLength {
width: 3rem;
}
}
.buttons {
display: flex;
flex-flow: column;
padding: 0.5rem 0 1rem;
.button-container {
padding: 0.25rem 0;
}
button {
border: none;
cursor: pointer;
color: $ultra-black-color;
padding: 0;
display: flex;
flex-wrap: nowrap;
line-height: 1.25rem;
background: #fff;
width: 100%;
&:hover {
color: #000;
text-decoration: underline;
svg path {
fill: #000;
}
}
&:disabled {
cursor: not-allowed;
color: $disabled-grey;
svg path {
fill: $disabled-grey;
}
}
span {
padding-left: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
}
}
}
2022-01-23 20:42:49 +00:00
}