Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
roienatan committed Nov 27, 2023
1 parent c107042 commit 771e42a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const LanguageDropdown: FC<LanguageDropdownProps> = (props) => {
menuButton: "language-dropdown__menu-button",
menuItem: "language-dropdown__menu-item",
value: "language-dropdown__value",
menu: "language-dropdown__menu",
}}
/>
);
Expand Down
12 changes: 12 additions & 0 deletions src/shared/components/Header/LanguageDropdown/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.language-dropdown__menu-button {
background-color: transparent;
border: 0;
background-color: $white;
color: $black;

@include big-phone {
Expand All @@ -12,18 +13,29 @@
}
}

.language-dropdown__menu {
border-color: $c-gray-5;
}

.language-dropdown__item--rtl {
text-align: right;
direction: rtl;
}

.language-dropdown__menu-item {
background-color: $white;
color: $black;
&:hover {
background-color: $c-pink-hover-feed-cards;
}
@include big-phone {
text-align: center;
}
}

.language-dropdown__value {
background-color: $white;
color: $black;
@include big-phone {
flex: unset;
font-size: $moderate;
Expand Down

0 comments on commit 771e42a

Please sign in to comment.