Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/FOUR-11185: Icons of buttons displaced to the left in Screen builder #1482

Merged
merged 2 commits into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/vue-form-builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
data-cy="toolbar-edit"
@click="openEditPageModal(currentPage)"
>
<i class="far fa-edit" />
<i class="far fa-edit p-0" />
</b-button>

<b-button
Expand All @@ -93,7 +93,7 @@
data-cy="toolbar-remove"
@click="confirmDelete()"
>
<i class="far fa-trash-alt" />
<i class="far fa-trash-alt p-0" />
</b-button>

<b-button
Expand All @@ -105,7 +105,7 @@
data-cy="toolbar-add"
@click="originalPageName = null"
>
<i class="fas fa-plus" />
<i class="fas fa-plus p-0" />
</b-button>
</div>

Expand Down
Loading