Update tailwindcss and styling
This commit is contained in:
parent
a39497e8d4
commit
7d4c7fe5f3
6 changed files with 30 additions and 12 deletions
vuejs/src
|
@ -7,7 +7,7 @@ h2 {
|
|||
|
||||
input,
|
||||
textarea {
|
||||
@apply w-full border border-gray-400 p-2 mt-1
|
||||
@apply mt-1 p-2 w-full border border-gray-400
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div v-if="messages.length" class="border p-4 mb-6">
|
||||
<ul class="list-disc list-inside ml-3">
|
||||
<div v-if="messages.length" class="mb-6 p-4 border">
|
||||
<ul class="ml-3 list-disc list-inside">
|
||||
<li v-for="message in messages" :key="message">{{ message }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue