Skip to content

Commit

Permalink
Button text alignment fixed (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmlessHarm authored Dec 6, 2024
2 parents 3d36c53 + 981bea6 commit dd579f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/campaign/Players.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<tag :is="cardView ? 'hk-card' : 'div'" :class="!cardView ? 'normal-view' : ''">
<div slot="header" class="pane__header top-menu">
<div slot="header" class="pane__header top-menu" :class="cardView && 'card-header'">
<div
class="money"
:class="{ red: currency >= maxCurrencyAmount }"
Expand All @@ -10,7 +10,7 @@
show: true,
type: 'drawers/party/Currency',
data: { current: currency },
})
})
: null
"
>
Expand Down
1 change: 1 addition & 0 deletions src/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ html body {

button {
all: unset;
text-align: center;
box-sizing: border-box;
}

Expand Down

0 comments on commit dd579f8

Please sign in to comment.