More Styling and Added Tooltips

This commit is contained in:
Annika Merris 2024-01-21 20:57:37 -05:00
parent 599d44a86b
commit 10684ad79c
14 changed files with 246 additions and 70 deletions

View file

@ -1,4 +1,14 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import ChangeLogEntry from '@/components/ChangeLogEntry.vue'
import { ref } from 'vue'
const entries20240120 = ref([
'Added text to the landing page',
'Cleaned up some styling across the site',
'Added a default sort to all of the tables',
'Added a couple of icons, and started working on adding tooltips'
])
</script>
<template>
<v-sheet class="flex-fill pa-2">
@ -36,9 +46,7 @@
</v-list-item>
<v-list-item>
<v-list-item-title>Missing Icons</v-list-item-title>
<v-list-item-subtitle>
I'd love to add icons for everything
</v-list-item-subtitle>
<v-list-item-subtitle> I'd love to add icons for everything </v-list-item-subtitle>
</v-list-item>
<v-list-item>
<v-list-item-title>Sorting and Grouping</v-list-item-title>
@ -50,7 +58,7 @@
</v-sheet>
<v-sheet :elevation="1" class="ma-2 my-4">
<h2>Changelog</h2>
<v-list lines="two">
<v-list>
<v-list-item>
<v-list-item-title>2024-01-16</v-list-item-title>
<v-list-item-subtitle>
@ -69,23 +77,24 @@
<p>First pass that I'm comfortable letting other people see</p>
</v-list-item-subtitle>
</v-list-item>
<v-list-item>
<v-list-item-title>2024-01-21</v-list-item-title>
<v-list-item-subtitle>
<p>Added text to the landing page</p>
<p>Cleaned up some styling across the site</p>
<p>Added a default sort to all of the tables</p>
</v-list-item-subtitle>
</v-list-item>
<ChangeLogEntry date="2024-01-20" :entries="entries20240120"> </ChangeLogEntry>
</v-list>
</v-sheet>
<v-sheet :elevation="1" class="ma-2 my-4">
<h2>Thanks</h2>
<p>
Special thanks to <span class="font-weight-bold">@marstache</span> from
<span class="font-weight-bold">S-183</span> for sharing his version of this in Google Sheets
<span class="font-weight-bold">S-183</span> for sharing her version of this in Google Sheets
and inspiring me to create this.
</p>
<p>
Thanks to <span class="font-weight-bold">@kathinja</span> for her assistance with flavor
text and proof reading.
</p>
<p>
Thanks <span class="font-weight-bold">@werewaffle</span> for all of his help with
proofreading and design.
</p>
</v-sheet>
</v-sheet>
</template>