Remove uses of iconified-button (#54)

This commit is contained in:
Geometrically
2023-05-25 13:25:36 -07:00
committed by GitHub
parent 7ae9627a79
commit 4243bf9ba8
4 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
<Button
v-for="item in items"
:key="item"
class="iconified-button"
class="btn"
:class="{ selected: selected === item }"
@click="toggleItem(item)"
>
@@ -71,7 +71,7 @@ export default defineComponent({
grid-gap: 0.5rem;
flex-wrap: wrap;
.iconified-button {
.btn {
text-transform: capitalize;
svg {

View File

@@ -11,7 +11,7 @@
<div class="modal-body" :class="{ shown: shown }">
<div v-if="header" class="header">
<h1>{{ header }}</h1>
<button class="iconified-button icon-only transparent" @click="hide">
<button class="btn icon-only transparent" @click="hide">
<XIcon />
</button>
</div>