From 0a2e721cfcfdf97f07eaa8deda7dcee7c47f4313 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 27 Feb 2026 17:28:38 +0100 Subject: [PATCH] Minor UI component styling improvements - Remove margin-right from SeasonedButton for better layout control - Remove max-width constraint from SeasonedInput for full-width forms - Simplify Toast component layout and remove unused icon section - Improve toast text spacing and structure --- src/components/ui/SeasonedButton.vue | 1 - src/components/ui/SeasonedInput.vue | 1 - src/plugins/Toast/ToastComponent.vue | 261 ++++++++++++++++----------- 3 files changed, 156 insertions(+), 107 deletions(-) diff --git a/src/components/ui/SeasonedButton.vue b/src/components/ui/SeasonedButton.vue index 2f82c50..3f616a6 100644 --- a/src/components/ui/SeasonedButton.vue +++ b/src/components/ui/SeasonedButton.vue @@ -37,7 +37,6 @@ min-height: 45px; padding: 5px 10px 4px 10px; margin: 0; - margin-right: 0.3rem; color: $text-color; background: $background-color-secondary; cursor: pointer; diff --git a/src/components/ui/SeasonedInput.vue b/src/components/ui/SeasonedInput.vue index bba9a1c..9d32a1f 100644 --- a/src/components/ui/SeasonedInput.vue +++ b/src/components/ui/SeasonedInput.vue @@ -81,7 +81,6 @@ display: flex; width: 100%; position: relative; - max-width: 35rem; border: 1px solid var(--text-color-50); background-color: var(--background-color-secondary); diff --git a/src/plugins/Toast/ToastComponent.vue b/src/plugins/Toast/ToastComponent.vue index 57fc12d..662046d 100644 --- a/src/plugins/Toast/ToastComponent.vue +++ b/src/plugins/Toast/ToastComponent.vue @@ -3,22 +3,19 @@
-
- Toast icon -
{{ title }} -
+
+
{{ title }}
+
+ +
+
@@ -65,107 +62,161 @@