Fix radio-button layout

pull/2/head
miguel 2023-04-27 23:52:56 +10:00
rodzic 1a111f1eba
commit 902c286297
1 zmienionych plików z 12 dodań i 6 usunięć

Wyświetl plik

@ -57,8 +57,8 @@ section div.sliders {
} }
section div.radios { section div.radios {
width: 100%; width: auto;
height: 100%; height: auto;
background: rgb(255, 255, 255); background: rgb(255, 255, 255);
margin: 0px; margin: 0px;
padding: 0px; padding: 0px;
@ -68,18 +68,24 @@ section div.radios {
flex-direction: row; flex-direction: row;
} }
div label { section div.sliders label {
background:white; background:white;
display: inline-block; display: inline-block;
width: 12%; width: 8%;
font-size: small; font-size: small;
text-align: right; text-align: right;
} }
section div.sliders input {
background:lightgrey;
display: inline-block;
width: 90%;
}
div input { div input {
background:lightgrey; background:lightgrey;
display: inline-block; display: inline-block;
width: 85%; width: 7%;
} }
section div.antennaSide-container { section div.antennaSide-container {
@ -145,7 +151,7 @@ section div.antennaSide-container {
section.gridLayoutClass { section.gridLayoutClass {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, 1fr) 160px 300px; grid-template-rows: repeat(2, 1fr) 190px 300px;
justify-items: stretch; justify-items: stretch;
} }