Question groups now have always the same height
This commit is contained in:
parent
f831ca13cf
commit
01f0f4ba2d
|
@ -47,16 +47,15 @@ a {
|
|||
float: none;
|
||||
border-radius: 10px;
|
||||
margin-top: 10px;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex: 1;
|
||||
padding: 5px;
|
||||
background-color: var(--bg-ab);
|
||||
}
|
||||
|
||||
.a {
|
||||
float: left;
|
||||
width: 45%;
|
||||
flex: 1 0 45%;
|
||||
box-sizing: border-box;
|
||||
padding: 25px;
|
||||
border-radius: 10px;
|
||||
|
@ -72,11 +71,13 @@ a {
|
|||
hyphens: auto;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.b {
|
||||
float: left;
|
||||
width: 45%;
|
||||
flex: 1 0 45%;
|
||||
box-sizing: border-box;
|
||||
padding: 25px;
|
||||
border-radius: 10px;
|
||||
|
@ -92,6 +93,8 @@ a {
|
|||
hyphens: auto;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
|
|
Loading…
Reference in New Issue