Skip to content

Commit

Permalink
Fix text overflow with single target
Browse files Browse the repository at this point in the history
  • Loading branch information
Eranziel committed Aug 5, 2024
1 parent 05b3048 commit a2555e0
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/module/helpers/acc_diff/Form.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -540,11 +540,19 @@
.total-label {
white-space: nowrap;
max-width: fit-content;
min-width: 10em;
min-width: 16em;
max-width: 16em;
width: 16em;
padding: 0 0.2em;
justify-self: center;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-between;
span {
text-wrap: wrap;
}
}
#accdiff button {
Expand All @@ -571,10 +579,6 @@
}
}
.accdiff-target-row .card-title {
background-color: #00000000;
}
#accdiff .lancer-weapon {
span {
margin-right: 1em;
Expand Down

0 comments on commit a2555e0

Please sign in to comment.