Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: heading shifted problem fixed #135

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ const { data: workshops } = useAsyncData('latest-workshops', () => queryContent(
<div>
<AppSection>
<div class="md:flex md:flex-row items-center">
<div class="mt-8 md:mt-0 md:w-3/5 md:flex-1">
<div class="mt-8 md:mt-0 md:w-3/5 md:flex-1 md:flex-grow-[1.05]">
<div class="flex gap-8 -mx-4 md:mx-0">
<div class="flex w-1/2 md:w-full items-center">
<AppParagraph tag="h1" look="superHeading"
class="flex flex-col sm:justify-start font-mono mt-8 md:mt-0 ml-4 md:ml-0">
class="flex flex-col sm:justify-start font-mono mt-8 md:mt-0 ml-4 md:ml-0 md:text-[55.1px] lg:text-[83px]">
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use rem's instead of pixels here? Ideally via predefined classes like text-xl? 🤔

<span>Build <span class="hidden md:inline md:ml-5 pl-8">//</span></span>
<span>Lead <span class="hidden md:inline md:ml-8 pl-8">//</span></span>
<span>Teach</span>
Expand Down