Skip to content

Commit

Permalink
fix tutorial overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadessu committed Dec 27, 2024
1 parent 6e76216 commit 6560a4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.replay_tuto_btn {
position: fixed;
z-index: 99999;
top: 0.6rem;
right: 4rem;
top: 0.8rem;
right: 6rem;
line-height: 1.5rem;
text-align: center;
/* background-color: var(--accent1); */
Expand Down
9 changes: 5 additions & 4 deletions src/components/Home/Landing/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Hero() {
const hero: heroItem[] = cobrandingLogo
? [
{ content: 'ambient', processAs: 'text' },
{ content: '×', processAs: 'separator' },
{ content: 'x', processAs: 'separator' },
{ content: cobrandingLogo, processAs: 'image' },
]
: [{ content: 'ambient', processAs: 'text' }];
Expand Down Expand Up @@ -71,15 +71,16 @@ export default function Hero() {
case 'separator':
jsxOutput = (
<Text
fontWeight='200'
// fontSize='800px'
fontWeight='400'
fontSize='header2'
color='text1'
align='center'
style={{
marginTop: '20px',
marginLeft: '15px',
marginRight: '15px',
fontSize: '30px',
fontSize: '70px',
padding: '0 20px',
}}
>
{h.content}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import {
TWITTER_LINK,
} from '../../../../../ambient-utils/constants';
export default function FutaLanding5() {
const BRAND_KIT_LINK =
'https://www.figma.com/design/ZQnS26jZqVd8OcGbUjiy8X/futa?node-id=3620-7194&t=2tiDHPAqGlO9Itwt-1';
const BRAND_KIT_LINK = 'https://futa-brand-kit.netlify.app/';

return (
<div className={styles.container}>
Expand Down

0 comments on commit 6560a4c

Please sign in to comment.