Update tailwindcss and styling

This commit is contained in:
Oliver Davies 2019-08-30 17:35:14 +01:00
parent a39497e8d4
commit 7d4c7fe5f3
6 changed files with 30 additions and 12 deletions
vuejs/src/components

View file

@ -1,10 +1,10 @@
<template>
<div>
<h1 class="text-4xl mb-2">Sessions</h1>
<h1 class="text-4xl">Sessions</h1>
<div v-if="sessions.length" class="bg-white p-6 rounded-lg border">
<ul class="-mb-3">
<li v-for="{ attributes } in sortedSessions" :key="attributes.drupal_internal__nid" class="mb-3">
<div v-if="sessions.length" class="mt-2 p-6 bg-white rounded-lg border">
<ul>
<li v-for="{ attributes } in sortedSessions" :key="attributes.drupal_internal__nid" class="mt-3 first:mt-0">
{{ attributes.title }}
</li>
</ul>