Skip to content

Commit

Permalink
fix: remove redundant styles
Browse files Browse the repository at this point in the history
  • Loading branch information
DeadCreator committed Dec 3, 2024
1 parent 8f3d238 commit 0ea8af5
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions codex-ui/src/vue/components/dropdown/Dropdown.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<template>
<div
ref="dropdown"
:class="$style['dropdown']"
>
<Button
:class="$style['dropdown__btn']"
:icon="activeItem.icon"
trailing-icon="BracketsVertical"
secondary
Expand Down Expand Up @@ -74,17 +72,3 @@ onMounted(() => {
});
</script>
<style lang="postcss" module>
.dropdown {
&__btn {
user-select: none;
background-color: var(--base--bg-secondary);
margin-bottom: var(--spacing-s);
padding-right: var(--spacing-s);
}
&__btn:hover {
background-color: var(--base--bg-secondary-hover);
cursor: pointer;
}
}
</style>

0 comments on commit 0ea8af5

Please sign in to comment.