mirror of
https://ghproxy.net/https://github.com/fairpm/fair-plugin.git
synced 2025-09-06 10:44:12 +08:00
34 lines
535 B
CSS
34 lines
535 B
CSS
.fair-settings .row {
|
|
align-items: flex-start;
|
|
display: flex;
|
|
gap: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.fair-settings .row > .label-wrapper {
|
|
flex: 0 0 auto;
|
|
font-weight: 600;
|
|
line-height: 1.3;
|
|
max-width: 30em;
|
|
min-width: 20em;
|
|
}
|
|
|
|
.fair-settings .row .description {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
@media screen and (max-width: 782px) {
|
|
.fair-settings .row {
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
.fair-settings .row > .label-wrapper {
|
|
max-width: 100%;
|
|
padding-bottom: 0.5em;
|
|
}
|
|
|
|
.fair-settings .row .field select {
|
|
margin: 0;
|
|
}
|
|
}
|