Failed to extract signature
1 changed files with
6 additions and
4 deletions
-
src/components/Container.tsx
|
@ -127,7 +127,9 @@ const Container: React.FC<{ |
|
|
return ( |
|
|
return ( |
|
|
<div |
|
|
<div |
|
|
className={css` |
|
|
className={css` |
|
|
padding-block-start: 15rem; |
|
|
--content-padding-top: min(15rem, 22vh); |
|
|
|
|
|
--logo-size: 5rem; |
|
|
|
|
|
padding-block-start: var(--content-padding-top); |
|
|
padding-block-end: 8rem; |
|
|
padding-block-end: 8rem; |
|
|
padding-inline: 10vw; |
|
|
padding-inline: 10vw; |
|
|
overflow: hidden; |
|
|
overflow: hidden; |
|
@ -160,7 +162,7 @@ const Container: React.FC<{ |
|
|
ref={logoContainer} |
|
|
ref={logoContainer} |
|
|
className={css` |
|
|
className={css` |
|
|
position: absolute; |
|
|
position: absolute; |
|
|
top: 8rem; |
|
|
top: calc(var(--content-padding-top) - var(--logo-size) - 2rem); |
|
|
left: 5rem; |
|
|
left: 5rem; |
|
|
background: none; |
|
|
background: none; |
|
|
border: 0; |
|
|
border: 0; |
|
@ -175,8 +177,8 @@ const Container: React.FC<{ |
|
|
css` |
|
|
css` |
|
|
position: absolute; |
|
|
position: absolute; |
|
|
left: 0; |
|
|
left: 0; |
|
|
height: 5rem; |
|
|
height: var(--logo-size); |
|
|
width: 5rem; |
|
|
width: var(--logo-size); |
|
|
border-radius: 100%; |
|
|
border-radius: 100%; |
|
|
border: 0; |
|
|
border: 0; |
|
|
background: none; |
|
|
background: none; |
|
|