Skip to content

Commit 12c33e2

Browse files
authored
chore: tweak padding top in mobile view (#464)
1 parent a1e7cc2 commit 12c33e2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/components/pages/about/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Pill from '@/components/shared/pill';
44

55
const Hero = () => {
66
return (
7-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
7+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
88
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
99
<Pill theme="secondary-1" className="col-span-full">
1010
Why we build

src/components/pages/batch-change/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Hero = () => {
22
return (
3-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
3+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
44
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
55
<h2 className="col-span-full mt-3.5 max-w-[1000px] text-center font-title text-88 font-semibold leading-none xl:max-w-[780px] xl:text-68 xl:leading-104 md:mt-2 md:max-w-[620px] md:text-54 sm:text-48 sm:leading-95">
66
Batch change databases

src/components/pages/blog/blog-post-hero/blog-post-hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const BlogPostHero = ({ post, isBlogPost = true }: BlogPostHeroProps) => {
3030
<section
3131
className={clsx(
3232
isBlogPost
33-
? 'pt-[136px] 2xl:pt-32 lg:pt-[120px] md:pt-[104px] sm:pt-24'
33+
? 'pt-[136px] 2xl:pt-32 lg:pt-[120px] md:pt-[104px] sm:pt-8'
3434
: 'mt-16 2xl:mt-14 lg:mt-12 md:mt-8',
3535
'container',
3636
)}

src/components/pages/branching/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Hero = () => {
22
return (
3-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
3+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
44
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
55
<h2 className="col-span-full mt-3.5 max-w-[1000px] text-center font-title text-88 font-semibold leading-none xl:max-w-[780px] xl:text-68 xl:leading-104 md:mt-2 md:max-w-[620px] md:text-54 sm:text-48 sm:leading-95">
66
Change Database the Git Way

src/components/pages/changelog/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Route from '@/lib/route';
44

55
const Hero = () => {
66
return (
7-
<section className="pt-[136px] 2xl:pt-32 lg:pt-[120px] md:pt-[104px] sm:pt-24">
7+
<section className="pt-[136px] 2xl:pt-32 lg:pt-[120px] md:pt-[104px] sm:pt-8">
88
<div className="container">
99
<h1 className="font-title text-90 font-semibold leading-none lg:text-68 md:text-56 sm:text-40">
1010
Bytebase <mark className="bg-transparent text-primary-1">Changelog</mark>

src/components/pages/data-masking/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Hero = () => {
22
return (
3-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
3+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
44
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
55
<h2 className="col-span-full mt-3.5 max-w-[1000px] text-center font-title text-88 font-semibold leading-none xl:max-w-[780px] xl:text-68 xl:leading-104 md:mt-2 md:max-w-[620px] md:text-54 sm:text-48 sm:leading-95">
66
🎭 Dynamic Data Masking

src/components/pages/schema-migration/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Hero = ({ subjects }: HeroProps) => {
4040
}, []);
4141

4242
return (
43-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
43+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
4444
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
4545
<Pill theme="secondary-1" className="col-span-full">
4646
With Web GUI

src/components/pages/sql-editor/hero/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Hero = ({ subjects }: HeroProps) => {
4040
}, []);
4141

4242
return (
43-
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-24">
43+
<section className="container pt-[136px] 3xl:pt-[128px] xl:pt-[120px] md:pt-[104px] sm:pt-8">
4444
<div className="gap-x-grid relative grid grid-cols-12 justify-items-center sm:grid-cols-4">
4545
<Pill theme="secondary-1" className="col-span-full">
4646
Web-based

0 commit comments

Comments
 (0)