Skip to content

Commit

Permalink
fix: rebase step 2
Browse files Browse the repository at this point in the history
  • Loading branch information
LVKIN committed Oct 8, 2024
1 parent 44d5180 commit 4b2f8e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/BiographySlider/BiographySlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const BiographySlider = ({ bgSection, biographies, titleSection }: Props) => {
<>
<main
id={id}
class="relative w-full mb-28"
class="relative w-full mb-28 lg:max-w-[1920px] lg:mx-auto"
>
<div class="scroll-animate flex gap-8 ml-6 lg:ml-28 lg:h-[54px]">
<h1 class={clx(
Expand Down
2 changes: 1 addition & 1 deletion components/ui/Media.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const Media = ({ images, title }: Props) => {

return (
<>
<main class="px-10 mx-auto mb-20 ">
<main class="px-10 mx-auto mb-20 lg:max-w-[1920px] lg:mx-auto">
<h1 class="move-initial-r font-poppins text-center text-xs/10 text-gray-300 mb-8 sm:text-sm lg:text-base">{title}</h1>
<div class={clx(
"grid grid-cols-2 items-center justify-center gap-y-9",
Expand Down
2 changes: 1 addition & 1 deletion sections/Image/BannerText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const BannerText = ({ desktopBanner, mobileBanner, tabletBanner }: Props) => {

return (
<>
<main class="flex h-fit relative -z-10 mt-20 lg:mt-0">
<main class="flex h-fit relative -z-10 mt-20 lg:mt-0 lg:max-w-[1920px] lg:mx-auto">
{device === "desktop" && (
<>
<Image
Expand Down

0 comments on commit 4b2f8e4

Please sign in to comment.