Skip to content

Commit

Permalink
Корректирует отображение эмодзи в breadcrumbs (#1288)
Browse files Browse the repository at this point in the history
  • Loading branch information
thegruffaloop authored Sep 27, 2024
1 parent f223bfb commit 9639013
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/styles/blocks/breadcrumbs.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@
flex-shrink: 1;
min-width: 0;
}

.breadcrumbs__item:last-child .breadcrumbs__text {
padding-right: calc(var(--header-font-letter-spacing) * -1);
}
5 changes: 3 additions & 2 deletions src/styles/blocks/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
--header-bg-color: var(--accent-color, var(--color-background));
--search-input-height: 0.7em;
--header-animation-time: 0.6s;
--header-font-letter-spacing: -0.06em;
position: relative;
z-index: 2;
background-color: var(--color-background);
Expand Down Expand Up @@ -90,7 +91,7 @@

.header__inner--main {
font-size: var(--font-size-l);
letter-spacing: -0.06em;
letter-spacing: var(--header-font-letter-spacing);
line-height: var(--font-line-height-l);
font-family: var(--font-family);
}
Expand All @@ -116,7 +117,7 @@
grid-template-rows: var(--font-size-xl) repeat(3, auto);
font-size: calc(var(--font-size-xl) * 0.95);
line-height: calc(var(--font-line-height-xl) * 0.95);
letter-spacing: -0.06em;
letter-spacing: var(--header-font-letter-spacing);
background-color: var(--color-background);
transition:
transform var(--header-animation-time) cubic-bezier(0.65, 0.05, 0.36, 1),
Expand Down

0 comments on commit 9639013

Please sign in to comment.