Fix table cell content alignment in campaign list. Closes #742.
This commit is contained in:
parent
879bff854e
commit
fd70776166
1 changed files with 8 additions and 6 deletions
|
@ -331,21 +331,23 @@ body.is-noscroll {
|
||||||
font-size: $size-7;
|
font-size: $size-7;
|
||||||
|
|
||||||
p {
|
p {
|
||||||
display: table-row;
|
|
||||||
border-bottom: 1px solid #ccc;
|
|
||||||
line-height: 0.775rem;
|
line-height: 0.775rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
display: table-cell;
|
text-align: left;
|
||||||
vertical-align: top;
|
|
||||||
text-align: right;
|
|
||||||
padding-bottom: 6px;
|
padding-bottom: 6px;
|
||||||
|
min-width: 100px;
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 10px;
|
}
|
||||||
|
[class*=" mdi-"]::before {
|
||||||
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue