1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

test(e2e): header should always be visible (sticky)

This commit is contained in:
Divlo
2022-02-23 09:03:10 +01:00
parent a467ea7aff
commit a2da9618af
6 changed files with 13 additions and 21 deletions

View File

@ -15,19 +15,11 @@ export const Interests: React.FC = () => {
)
return (
<>
<div className='max-w-full'>
{paragraphs.map((paragraph, index) => {
return <InterestParagraph key={index} {...paragraph} />
})}
<InterestsList />
</div>
<style jsx global>{`
#__next {
display: block;
}
`}</style>
</>
<div className='max-w-full'>
{paragraphs.map((paragraph, index) => {
return <InterestParagraph key={index} {...paragraph} />
})}
<InterestsList />
</div>
)
}

View File

@ -14,7 +14,7 @@ export const ProfileDescriptionBottom: React.FC = () => {
href='/curriculum-vitae.html'
className='text-yellow hover:underline dark:text-yellow-dark'
>
Mon Curriculum vitæ
Curriculum vitæ
</a>
</>
)}