Skip to content

Commit

Permalink
fix vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommytrg committed Jul 18, 2024
1 parent 4fc9bd3 commit 402f8ea
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions components/LanguageSwitcher.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const iconMap: Dictionary = computed(() => {
background: transparent;
box-shadow: none;
border: none;
color: $black;
// color: $black;
min-width: max-content;
border-radius: 16px;
font-size: 16px;
Expand All @@ -114,22 +114,22 @@ const iconMap: Dictionary = computed(() => {
font-size: 8px;
}
.vs__dropdown-menu {
background: $white;
// background: $white;
}
.vs__dropdown-option {
font-family: 'NeueMachina-Regular', sans-serif;
color: $black;
// color: $black;
}
.vs__dropdown-option--highlight {
color: $white;
background: $black;
// color: $white;
// background: $black;
}
.vs__clear,
.vs__open-indicator {
fill: $white;
// fill: $white;
transform: scale(0.5);
transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
Expand All @@ -141,7 +141,7 @@ const iconMap: Dictionary = computed(() => {
vertical-align: middle;
}
.vs__selected {
color: $white;
// color: $white;
font-family: 'NeueMachina-Regular', sans-serif;
margin: 0;
padding: 4px 0 0 0;
Expand All @@ -153,10 +153,10 @@ const iconMap: Dictionary = computed(() => {
}
&:hover {
.vs__selected {
color: $white;
// color: $white;
}
.vs__open-indicator {
color: $white;
// color: $white;
}
}
// remove extra space
Expand Down

0 comments on commit 402f8ea

Please sign in to comment.