Skip to content

Commit

Permalink
feat(combat): make skill popup bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Sep 13, 2023
1 parent 0c2bed7 commit 57ad440
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions client/src/app/pages/combat/combat.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@
trigger="abilitiesModal"
[initialBreakpoint]="0.5"
[breakpoints]="[0, 0.5, 1]"
class="ability-modal-container"
#abilitiesModal
>
<ng-template>
Expand Down
15 changes: 13 additions & 2 deletions client/src/app/pages/combat/combat.page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,15 @@
}
}

.ability-modal {
--padding-top: 16px;
.ability-modal-container {

@media screen and (min-width: 1401px) {
--width: 50%;
}

.ability-modal {
--padding-top: 16px;
}
}

.ability-list {
Expand All @@ -198,5 +205,9 @@
&:hover {
background: #222;
}

app-combat-ability {
width: 100%;
}
}
}

0 comments on commit 57ad440

Please sign in to comment.