Skip to content

Commit

Permalink
Fix table cell content alignment in campaign list. Closes #742.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 1, 2022
1 parent 879bff8 commit fd70776
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions frontend/src/assets/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -331,21 +331,23 @@ body.is-noscroll {
font-size: $size-7;

p {
display: table-row;
border-bottom: 1px solid #ccc;
line-height: 0.775rem;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}

label {
font-weight: bold;
display: table-cell;
vertical-align: top;
text-align: right;
text-align: left;
padding-bottom: 6px;
min-width: 100px;
}
span {
display: inline-block;
margin-left: 10px;
}
[class*=" mdi-"]::before {
margin-left: 0;
}
}

Expand Down

0 comments on commit fd70776

Please sign in to comment.