Question groups now have always the same height
This commit is contained in:
parent
f831ca13cf
commit
01f0f4ba2d
|
@ -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"] {
|
||||||
|
|
Loading…
Reference in New Issue