Question groups now have always the same height

This commit is contained in:
gpkvt 2023-06-04 10:32:57 +02:00
parent f831ca13cf
commit 01f0f4ba2d
1 changed files with 7 additions and 4 deletions

View File

@ -47,16 +47,15 @@ a {
float: none; float: none;
border-radius: 10px; border-radius: 10px;
margin-top: 10px; margin-top: 10px;
justify-content: center;
align-items: center;
display: flex; display: flex;
flex: 1;
padding: 5px; padding: 5px;
background-color: var(--bg-ab); background-color: var(--bg-ab);
} }
.a { .a {
float: left; float: left;
width: 45%; flex: 1 0 45%;
box-sizing: border-box; box-sizing: border-box;
padding: 25px; padding: 25px;
border-radius: 10px; border-radius: 10px;
@ -72,11 +71,13 @@ a {
hyphens: auto; hyphens: auto;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
display: flex;
align-items: center;
} }
.b { .b {
float: left; float: left;
width: 45%; flex: 1 0 45%;
box-sizing: border-box; box-sizing: border-box;
padding: 25px; padding: 25px;
border-radius: 10px; border-radius: 10px;
@ -92,6 +93,8 @@ a {
hyphens: auto; hyphens: auto;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
display: flex;
align-items: center;
} }
input[type="radio"] { input[type="radio"] {