Skip to content

Commit

Permalink
fix style of images
Browse files Browse the repository at this point in the history
  • Loading branch information
minhhikari1994 committed Jul 4, 2024
1 parent bcefc50 commit 1fc949a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/content/SongEntry.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="box m-auto xl:w-9 w-12 my-3">
<div class="grid">
<div class="col-12 lg:col-4 ">
<NuxtImg format="webp" class="w-full" :src="image" :alt="name" loading="lazy"/>
<div class="col-12 lg:col-4 text-center">
<NuxtImg format="webp" class="lg:w-full w-8 m-auto" :src="image" :alt="name" loading="lazy"/>
</div>
<div class="col-12 lg:col-8 text-center m-auto px-3">
<div>
Expand Down
2 changes: 1 addition & 1 deletion components/content/TvEntry.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="box m-auto xl:w-9 w-12 my-3">
<div class="grid">
<div class="col-12 lg:col-4">
<div class="col-12 lg:col-4 text-center">
<NuxtImg fit="contain" format="webp" class="lg:w-full w-8 m-auto" :src="image" :alt="name" loading="lazy"/>
</div>
<div class="col-12 lg:col-8 text-center m-auto px-3">
Expand Down

0 comments on commit 1fc949a

Please sign in to comment.