Skip to content

Commit

Permalink
fix: img width
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyinws committed Sep 24, 2023
1 parent 122cc67 commit b674296
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/AddAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ onMounted(() => {
<span class="w-[18rem] border-t border-gray-300 dark:border-gray-600" />
</div>
<div class="relative flex justify-center text-xs uppercase">
<span class="bg-white dark:bg-[#131313] text-gray-600 px-2">{{ $t('system.or') }}</span>
<span class="bg-white dark:bg-[#121212] text-gray-600 px-2">{{ $t('system.or') }}</span>
</div>
</div>
<div class="flex flex-col items-start">
Expand Down
10 changes: 5 additions & 5 deletions components/ScrollCard.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<div class="container mt-4">
<div class="container mt-10">
<div class="horizontal-scrolling-items gap-4">
<div v-for="i in 2" :key="i" class="flex gap-4">
<NuxtImg height="150" width="400" src="/example/1.svg" />
<NuxtImg height="150" width="400" src="/example/2.svg" />
<NuxtImg height="150" width="400" src="/example/3.svg" />
<NuxtImg height="150" width="400" src="/example/4.svg" />
<NuxtImg class="sm:h-[150px] sm:w-[400px] w-[311px] h-[117px]" src="/example/1.svg" />
<NuxtImg class="sm:h-[150px] sm:w-[400px] w-[311px] h-[117px]" src="/example/2.svg" />
<NuxtImg class="sm:h-[150px] sm:w-[400px] w-[311px] h-[117px]" src="/example/3.svg" />
<NuxtImg class="sm:h-[150px] sm:w-[400px] w-[311px] h-[117px]" src="/example/4.svg" />
</div>
</div>
</div>
Expand Down

1 comment on commit b674296

@vercel
Copy link

@vercel vercel bot commented on b674296 Sep 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.