Skip to content

Commit 88fb182

Browse files
committed
Small fix to rounded corners
1 parent 9e89a88 commit 88fb182

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

components/section/Playground.vue

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ const filtered_links = computed(() => {
102102
<section
103103
class="bg-gradient-to-b from-transparent to-background text-gray-700 dark:to-background-dark dark:text-white"
104104
>
105-
<div class="container mx-auto space-y-4 py-8 text-gray-700 dark:text-white">
106-
<div class="mb-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
105+
<div class="container mx-auto py-8 text-gray-700 dark:text-white">
106+
<div class="mb-2 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
107107
<nuxt-link
108-
class="relative hover:ring-1 hover:ring-gray-300 dark:hover:ring-white"
108+
class="relative hover:ring-1 hover:ring-gray-300 dark:hover:ring-white rounded-lg"
109109
v-for="link in filtered_links"
110110
:key="link.title"
111111
:to="link.link"
@@ -118,7 +118,7 @@ const filtered_links = computed(() => {
118118
class="absolute bottom-2 flex w-full items-center justify-center"
119119
>
120120
<div
121-
class="w-full bg-black bg-[url('/images/noise.svg')] px-6 py-2"
121+
class="w-full bg-black bg-[url('/images/noise.svg')] px-6 py-2 border-t border-b border-white"
122122
>
123123
<h3 class="text-xl font-bold text-gray-700 dark:text-white">
124124
{{ link.title }}
@@ -131,9 +131,7 @@ const filtered_links = computed(() => {
131131
</div>
132132
</nuxt-link>
133133
</div>
134-
<div v-if="linkToPlayground">
135-
<MoreLink to="/playground" />
136-
</div>
134+
<MoreLink to="/playground" />
137135
</div>
138136
</section>
139137
</template>

0 commit comments

Comments
 (0)