Skip to content

Commit

Permalink
fix: limit image size
Browse files Browse the repository at this point in the history
  • Loading branch information
romangg committed Jul 7, 2024
1 parent 5feb461 commit 1cc7c96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>

<div class="px-4 sm:px-10 mt-14 md:mt-20">
<div class="max-w-7xl w-full mx-auto grid md:grid-cols-2 gap-10 place-items-center">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-10 lg:gap-14 xl:gap-20 place-items-center">
<div class="md:order-last">
<NuxtImg
src="branch.webp"
Expand All @@ -64,14 +64,14 @@
</div>
</div>

<div class="px-4 sm:px-10 mt-14 md:mt-28">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-10 place-items-center">
<div class="px-4 sm:px-10 pt-14 md:pt-24 xl:pt-28">
<div class="max-w-7xl mx-auto grid md:grid-cols-2 gap-10 lg:gap-14 xl:gap-20 place-items-center">
<div>
<NuxtImg
src="company.webp"
alt="Skyscrapers"
height="500px"
class="object-contain"
width="800px"
class="max-h-[350px] object-cover"
/>
</div>
<div>
Expand Down

0 comments on commit 1cc7c96

Please sign in to comment.