Introduced address management functionality, including address creation, deletion, and display with full localization support. Integrated GraphQL queries, mutations, and reusable composables for backend communication. - Added `addresses.vue` to profile for managing user addresses. - Implemented `useAddressCreate`, `useAddressDelete`, and `useAddressAutocomplete` composables. - Created reusable components: `forms/address.vue` and `cards/address.vue`. - Updated `navigation.vue` to include addresses in profile navigation. - Enhanced localization files for address-related translations. This improves user experience by enabling comprehensive address management in the profile section. No breaking changes.
27 lines
No EOL
691 B
SCSS
27 lines
No EOL
691 B
SCSS
@use "../global/variables" as *;
|
|
|
|
.el-select__wrapper {
|
|
height: 36px !important;
|
|
min-height: 50px !important;
|
|
background-color: transparent !important;
|
|
}
|
|
.el-select--large .el-select__wrapper {
|
|
border-radius: $default_border_radius !important;
|
|
box-shadow: none !important;
|
|
border: 1px solid $border !important;
|
|
font-size: 16px !important;
|
|
}
|
|
.el-select__placeholder.is-transparent {
|
|
color: $disabled_secondary !important;
|
|
}
|
|
|
|
.el-select__popper.el-popper {
|
|
background-color: $main_hover !important;
|
|
}
|
|
.el-select-dropdown__item {
|
|
color: $primary_dark !important;
|
|
}
|
|
.el-select-dropdown__item.is-hovering {
|
|
color: $primary !important;
|
|
background-color: $main !important;
|
|
} |