[READ-ONLY] Mirror of https://github.com/danielroe/dwaring87-webdev-wedding. Marissa & David's Wedding Website!
0

Configure Feed

Select the types of activity you want to include in your feed.

Recommendations: Improve Category Links

+3 -3
+3 -3
components/Recommendations.vue
··· 12 12 <!-- Category Index --> 13 13 <div class="well mt-8"> 14 14 <h4 class="mb-2">Jump to Category:</h4> 15 - <div class="inline sm:flex flex-wrap gap-x-4 justify-between"> 16 - <span class="block" v-for="(category) in Object.keys(recommendations)"> 17 - <a :href="`#category-${category}`">{{ category }}</a> 15 + <div class="inline sm:flex flex-wrap gap-x-2 justify-between"> 16 + <span class="block my-3 bg-cyan-800 rounded-md px-2 w-fit" v-for="(category) in Object.keys(recommendations)"> 17 + <a :href="`#category-${category}`" style="text-decoration: none; color: #fff !important">{{ category }}</a> 18 18 </span> 19 19 </div> 20 20 </div>