Skip to content

Commit

Permalink
CORE: bg color (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekachxaidze98 authored Oct 28, 2024
1 parent c4c876d commit 3be6c28
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/modules/header/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,29 @@
.research-item {
& .item-link {
background: #fff4ea;

&:hover {
text-decoration: none;
background-color:
hsl(
var(
--app-bar-overlay,
var(--component-overlay) / var(--component-overlay-hover)
)
);
}

&:focus {
text-decoration: none;
background-color:
hsl(
var(
--app-bar-overlay,
var(--component-overlay) / var(--component-overlay-focus)
)
);
outline: 0;
}
}
}

Expand Down

0 comments on commit 3be6c28

Please sign in to comment.