Skip to content

Commit

Permalink
fix: reduce font size on small screen (#1026)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Dec 9, 2024
1 parent 9bd9bed commit f64b4a1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/ui/src/components/Landing/Ecosystem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<UiContainer class="!max-w-screen-lg">
<div class="max-w-[600px]">
<div class="eyebrow mb-3">Ecosystem</div>
<h1 class="mb-5 font-display !text-[44px]">
<h1 class="mb-5 font-display text-[36px] xs:text-[44px]">
Supercharge your governance with integrations
</h1>
<UiButton :to="{ name: 'site-ecosystem' }">
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/src/components/Landing/Features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const FEATURES = [
<UiContainer class="!max-w-screen-lg">
<div class="pb-6 max-w-[600px]">
<div class="eyebrow mb-3">Features</div>
<h1 class="mb-4 font-display !text-[44px]">
<h1 class="mb-4 font-display text-[36px] xs:text-[44px]">
Everything DAOs need to make better decisions together
</h1>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/src/components/Landing/Flow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const STEPS = [
<template>
<div>
<UiContainer class="!max-w-screen-lg">
<h1 class="font-display max-w-[680px] py-9 !text-[44px]">
<h1 class="font-display max-w-[680px] py-9 text-[36px] xs:text-[44px]">
A fully integrated suite to manage DAO governance.
</h1>
</UiContainer>
Expand Down
2 changes: 1 addition & 1 deletion apps/ui/src/components/Landing/Hero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
>
<div class="max-w-[560px]">
<div class="eyebrow mb-3">Turn chaos to consensus</div>
<h1 class="mb-5 font-display !text-[56px]">
<h1 class="mb-5 font-display text-[40px] xs:text-[56px]">
The governance stack for your organization
</h1>
<UiButton :to="{ name: 'my-home' }" class="primary">
Expand Down
4 changes: 3 additions & 1 deletion apps/ui/src/components/Landing/Start.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<UiContainer class="!max-w-screen-lg">
<div class="text-center max-w-[600px] mx-auto">
<div class="eyebrow mb-3">Join Snapshot</div>
<h1 class="mb-4 font-display !text-[44px]">Ready to govern?</h1>
<h1 class="mb-4 font-display text-[36px] xs:text-[44px]">
Ready to govern?
</h1>
<UiButton :to="{ name: 'my-home' }" class="primary">
Get started
</UiButton>
Expand Down

0 comments on commit f64b4a1

Please sign in to comment.