diff --git a/components/navbar/ConnectedProfile.vue b/components/navbar/ConnectedProfile.vue index 3325991eec..c23d18e268 100644 --- a/components/navbar/ConnectedProfile.vue +++ b/components/navbar/ConnectedProfile.vue @@ -39,6 +39,7 @@ diff --git a/components/profile/FilterButton.vue b/components/profile/FilterButton.vue index 8940564c2f..f18b619174 100644 --- a/components/profile/FilterButton.vue +++ b/components/profile/FilterButton.vue @@ -2,8 +2,6 @@ @@ -29,19 +27,3 @@ const model = computed({ }, }) - - diff --git a/components/profile/ProfileDetail.vue b/components/profile/ProfileDetail.vue index 1198b52147..dca062fd11 100644 --- a/components/profile/ProfileDetail.vue +++ b/components/profile/ProfileDetail.vue @@ -99,7 +99,6 @@ variant="outlined-rounded" data-testid="profile-wallet-links-button" :active="active" - dropdown :icon-right="active ? 'chevron-up' : 'chevron-down'" > {{ $t('profile.walletAndLinks') }} @@ -194,7 +193,6 @@ diff --git a/libs/ui/src/components/NeoButton/NeoButton.scss b/libs/ui/src/components/NeoButton/NeoButton.scss index a829d86068..30f975315c 100644 --- a/libs/ui/src/components/NeoButton/NeoButton.scss +++ b/libs/ui/src/components/NeoButton/NeoButton.scss @@ -22,7 +22,7 @@ &:not(.pressing):active, &:not(.pressing).active { - @apply bg-background-color-inverse text-text-color-inverse; + @apply bg-background-color-inverse text-text-color-inverse border-border-color; } } @@ -46,7 +46,7 @@ @apply border-border-color #{!important}; } - &:not(.dropdown.active):hover { + &:not(.active):hover { @apply bg-background-color text-text-color; } @@ -116,7 +116,7 @@ &--outlined-rounded { @apply w-min py-2 px-4 rounded-[3rem] shadow-none border border-card-border-color-light bg-background-color; - &:not(.dropdown.active):hover { + &:not(.active):hover { @apply bg-background-color border border-text-color text-text-color; } @@ -131,7 +131,7 @@ &--primary-rounded { @apply h-[40px] w-min rounded-3xl shadow-none border border-border-color bg-k-primary text-black; - &:not(.dropdown.active):hover { + &:not(.active):hover { @apply bg-background-color border border-text-color text-text-color; } diff --git a/libs/ui/src/components/NeoButton/NeoButton.vue b/libs/ui/src/components/NeoButton/NeoButton.vue index 2cc9aa9e0e..ac9e41a9a2 100644 --- a/libs/ui/src/components/NeoButton/NeoButton.vue +++ b/libs/ui/src/components/NeoButton/NeoButton.vue @@ -7,7 +7,6 @@ 'no-shadow': noShadow, 'loading-with-label': loadingWithLabel, 'shiny': shiny, - 'dropdown': dropdown, 'pressing': pressing, }" :size="size" @@ -48,7 +47,6 @@ const props = withDefaults( iconPack?: string label?: string active?: boolean - dropdown?: boolean fixedWidth?: boolean noShadow?: boolean variant?: NeoButtonVariant