Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Remove uses of iconified-button (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically authored May 25, 2023
1 parent 7ae9627 commit 4243bf9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/assets/styles/classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
margin-block-start: var(--gap-md);
}

:where(button, .button, .iconified-button) {
:where(button, .button, .btn) {
width: fit-content;
}

Expand Down Expand Up @@ -86,7 +86,7 @@
gap: var(--gap-sm);
margin-bottom: calc(var(--gap-sm) + var(--gap-md));

.iconified-button,
.btn,
.input-group {
flex-shrink: 0;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/components/base/Chips.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Button
v-for="item in items"
:key="item"
class="iconified-button"
class="btn"
:class="{ selected: selected === item }"
@click="toggleItem(item)"
>
Expand Down Expand Up @@ -71,7 +71,7 @@ export default defineComponent({
grid-gap: 0.5rem;
flex-wrap: wrap;
.iconified-button {
.btn {
text-transform: capitalize;
svg {
Expand Down
2 changes: 1 addition & 1 deletion lib/components/base/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "omorphia",
"type": "module",
"version": "0.4.18",
"version": "0.4.19",
"files": [
"dist"
],
Expand Down

0 comments on commit 4243bf9

Please sign in to comment.