fix(SW-184): added some variables and other small fixes related to comments on PR
This commit is contained in:
@@ -12,5 +12,5 @@
|
|||||||
.initials {
|
.initials {
|
||||||
font-size: 0.75rem;
|
font-size: 0.75rem;
|
||||||
color: var(--Base-Text-Inverted);
|
color: var(--Base-Text-Inverted);
|
||||||
background-color: var(--Scandic-Peach-70);
|
background-color: var(--Base-Icon-Low-contrast);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: var(--Spacing-x1);
|
padding: var(--Spacing-x1);
|
||||||
gap: var(--Spacing-x-one-and-half);
|
gap: var(--Spacing-x-one-and-half);
|
||||||
color: var(--Scandic-Brand-Burgundy);
|
color: var(--Base-Text-High-contrast);
|
||||||
font-family: var(--typography-Body-Bold-fontFamily);
|
font-family: var(--typography-Body-Bold-fontFamily);
|
||||||
font-size: var(--typography-Body-Bold-fontSize);
|
font-size: var(--typography-Body-Bold-fontSize);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { MainNavigationItem } from "@/types/components/header/mainNavigationItem"
|
import type { MainNavigationItem } from "@/types/components/header/mainNavigationItem"
|
||||||
|
|
||||||
export const navigationMenuItems: MainNavigationItem[] = [
|
export const navigationMenuItems: MainNavigationItem[] = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -53,7 +53,6 @@ export default function LanguageSwitcherContent({
|
|||||||
<li key={key}>
|
<li key={key}>
|
||||||
<Link
|
<Link
|
||||||
className={`${styles.link} ${isActive ? styles.active : ""}`}
|
className={`${styles.link} ${isActive ? styles.active : ""}`}
|
||||||
color="burgundy"
|
|
||||||
href={url}
|
href={url}
|
||||||
>
|
>
|
||||||
{languages[key]}
|
{languages[key]}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
font-family: var(--typography-Subtitle-2-fontFamily);
|
font-family: var(--typography-Subtitle-2-fontFamily);
|
||||||
font-size: var(--typography-Subtitle-2-Mobile-fontSize);
|
font-size: var(--typography-Subtitle-2-Mobile-fontSize);
|
||||||
font-weight: var(--typography-Subtitle-2-fontWeight);
|
font-weight: var(--typography-Subtitle-2-fontWeight);
|
||||||
color: var(--Base-Text-High-contrast, #4d001b);
|
color: var(--Base-Text-High-contrast);
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
.link.active,
|
.link.active,
|
||||||
.link:hover {
|
.link:hover {
|
||||||
background-color: var(--Base-Surface-Primary-light-Hover-alt);
|
background-color: var(--Base-Surface-Primary-light-Hover-alt);
|
||||||
font-weight: 600;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user