Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Fix bug where multiline text in toast messages had incorrect vertical padding #590

Merged
merged 1 commit into from
Dec 9, 2021
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
3 changes: 1 addition & 2 deletions src/components/ChecToast.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,11 @@ export default {
}

&__text {
@apply text-primary-blue text-left text-sm break-words max-w-full mt-1;
@apply text-primary-blue text-left text-sm break-words max-w-full my-auto;

.button {
@apply mt-3 -ml-1;
}

}

&__close-icon {
Expand Down