Skip to content

Commit

Permalink
fix(DamageCalculator): fix component styles
Browse files Browse the repository at this point in the history
  • Loading branch information
rudnovd committed Mar 7, 2022
1 parent f0225da commit 3d51f2e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/components/DamageCalculator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,12 @@ export default defineComponent({
.effects {
display: grid;
grid-template-columns: repeat(3, 1fr);
& > div {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
}
.skills {
Expand Down Expand Up @@ -414,10 +420,16 @@ export default defineComponent({
}
.hero-parameters {
display: flex;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-auto-flow: column;
grid-gap: 8px;
& > div {
width: 64px;
}
.parameter-attack {
margin-right: 2rem;
margin-left: auto;
}
}
Expand Down

0 comments on commit 3d51f2e

Please sign in to comment.