From 8b07ab4e653e4cedc479a4196b8c8de35d6082d9 Mon Sep 17 00:00:00 2001 From: Viet An Date: Thu, 18 Jun 2026 11:57:37 +0700 Subject: [PATCH] changes --- app/assets/styles/overrides-components.scss | 4 +- app/components/Modal.vue | 37 ++++++++++++++++--- app/components/TopMenu.vue | 4 +- app/components/common/Avatarbox.vue | 2 +- app/components/dashboard/AvatarBox.vue | 4 +- .../dashboard/DeliveryInteractive.vue | 2 +- app/components/dashboard/Driver.vue | 2 +- app/components/datatable/ContextMenu.vue | 4 +- app/components/datatable/DataTable.vue | 5 ++- app/components/datatable/NewField.vue | 2 +- app/components/datatable/PivotDataView.vue | 6 +-- app/components/datatable/TableSetting.vue | 4 +- app/components/datepicker/EventSummary.vue | 2 +- app/components/datepicker/PickDay.vue | 4 +- app/components/datepicker/PickYear.vue | 2 +- app/components/imports/ProductVariantForm.vue | 4 +- .../imports/ProductVariantFormNew.vue | 4 +- app/components/inventory/SelectedInvItem.vue | 10 ++--- .../marketing/email/dataGmail/EmailSent.vue | 2 +- .../email/dataGmail/OpenListGmail.vue | 2 +- app/components/media/CropImage.vue | 6 +-- app/components/media/Picture.vue | 4 +- app/components/orders/InvoiceRow.vue | 1 - app/components/orders/OrderHistoryTab.vue | 2 +- app/components/orders/OrderKanbanCard.vue | 6 +-- app/components/orders/OrderPaymentTab.vue | 2 +- app/components/orders/OrderPipeline.vue | 2 +- app/components/orders/OrderProductTab.vue | 10 ++--- app/components/orders/OrderReceiptTab.vue | 2 +- app/components/orders/OrdersKanban.vue | 6 +-- app/components/orders/PipelinePhase.vue | 2 +- app/components/pos/EditAddress.vue | 2 +- app/components/pos/POS.vue | 2 +- app/components/snackbar/SnackBar.vue | 2 +- 34 files changed, 90 insertions(+), 65 deletions(-) diff --git a/app/assets/styles/overrides-components.scss b/app/assets/styles/overrides-components.scss index bb0935c..0608afe 100644 --- a/app/assets/styles/overrides-components.scss +++ b/app/assets/styles/overrides-components.scss @@ -1,5 +1,3 @@ -@use "bulma/sass/utilities/initial-variables.scss" as *; - [data-theme="light"], .theme-light { --bulma-block-spacing: 1rem; @@ -7,7 +5,7 @@ .card { --bulma-card-shadow: none; - border: 1px solid $grey-lighter; + border: 1px solid var(--bulma-grey-90); } .title, diff --git a/app/components/Modal.vue b/app/components/Modal.vue index a9e5674..a27b579 100644 --- a/app/components/Modal.vue +++ b/app/components/Modal.vue @@ -15,6 +15,7 @@ class="modal-card max-w-8xl" :style="{ width: $store.viewport <= 1 ? 'calc(100% - 2rem)' : width, + height, }" >
-