-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new header design with transistions * New header design works on desktop * Add mobile and tablet version of header * Working mobile and tablet version ✨ * Add aria-label to menu button * Fix: Remove breadcrumbs from PageHeader * Remove todos * Fix colors
- Loading branch information
Showing
16 changed files
with
316 additions
and
180 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 35 additions & 5 deletions
40
src/components/languageSwitcher/languageSwitcher.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,47 @@ | ||
.list { | ||
display: flex; | ||
gap: 1rem; | ||
gap: 0.25rem; | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
margin: auto 0; | ||
} | ||
|
||
.divider { | ||
border-left: 1px solid var(--text-primary-light); | ||
/* Todo: fix correct color */ | ||
border-left: 1px solid var(--text-primary); | ||
flex-grow: 1; | ||
} | ||
|
||
.link { | ||
color: var(--text-primary-light) !important; | ||
color: var(--text-primary) !important; | ||
letter-spacing: 0.1rem; | ||
line-height: 120%; | ||
font-weight: 300; | ||
|
||
&:hover { | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
.selectedLink { | ||
color: var(--text-primary) !important; | ||
letter-spacing: 0.1rem; | ||
line-height: 120%; | ||
font-weight: 600; | ||
|
||
&:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
&:active { | ||
font-weight: 600; | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
.notSelected { | ||
text-decoration: none; | ||
|
||
&:hover { | ||
text-decoration: underline; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.