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 {
width: 100%;
height: 100%;
width: auto;
height: auto;
background: rgb(255, 255, 255);
margin: 0px;
padding: 0px;
@ -68,18 +68,24 @@ section div.radios {
flex-direction: row;
}
div label {
section div.sliders label {
background:white;
display: inline-block;
width: 12%;
width: 8%;
font-size: small;
text-align: right;
}
section div.sliders input {
background:lightgrey;
display: inline-block;
width: 90%;
}
div input {
background:lightgrey;
display: inline-block;
width: 85%;
width: 7%;
}
section div.antennaSide-container {
@ -145,7 +151,7 @@ section div.antennaSide-container {
section.gridLayoutClass {
display: grid;
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;
}