Skip to content

Commit 6073c0a

Browse files
committed
fix
1 parent 3a4bcc4 commit 6073c0a

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,6 +3214,14 @@ li li {
32143214
order: 1;
32153215
}
32163216

3217+
.md\:col-span-6 {
3218+
grid-column: span 6 / span 6;
3219+
}
3220+
3221+
.md\:col-start-4 {
3222+
grid-column-start: 4;
3223+
}
3224+
32173225
.md\:mx-auto {
32183226
margin-left: auto;
32193227
margin-right: auto;
@@ -3252,6 +3260,10 @@ li li {
32523260
display: flex;
32533261
}
32543262

3263+
.md\:grid {
3264+
display: grid;
3265+
}
3266+
32553267
.md\:hidden {
32563268
display: none;
32573269
}

template-parts/sections/section-hero.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
?>
1212

1313
<section class="relative overflow-hidden">
14-
<div class="max-w-7xl mx-auto block lg:grid grid-cols-1 auto-rows-auto xl:grid-cols-12 items-start md:pb-[10rem] lg:pb-[30rem] pb-20 px-5 lg:px-0 lg:gap-x-10 md:gap-x-5">
14+
<div class="max-w-7xl mx-auto block md:grid grid-cols-1 auto-rows-auto xl:grid-cols-12 items-start md:pb-[10rem] lg:pb-[30rem] pb-20 px-5 lg:px-0 lg:gap-x-10 md:gap-x-5">
1515
<div class="lg:space-y-10 space-y-2.5 xl:col-span-6">
1616
<div class="space-y-5 md:pt-24 pt-10">
1717
<h1 class="lg:text-5xl text-4xl font-display lg:text-left text-center">
@@ -134,7 +134,7 @@
134134
</a>
135135
</div>
136136

137-
<div class="lg:col-span-6 col-span-full col-start-4 text-center mt-20 relative">
137+
<div class="md:col-span-6 col-span-full md:col-start-4 text-center mt-20 relative">
138138
<img src="<?php echo get_template_directory_uri() . '/assets/images/arrows.png'; ?>" class="w-full max-w-3xl absolute inset-x-0 -top-14 lg:-top-24" />
139139
<h2 class="lg:text-3xl text-xl font-display leading-none">
140140
Simple two-step process

0 commit comments

Comments
 (0)