Perma dark mode and fixing inconsistent styles.

This commit is contained in:
iamBadgers
2026-03-28 17:52:59 -07:00
parent 20398be7c4
commit 2ee43ac090
7 changed files with 152 additions and 352 deletions

View File

@@ -37,10 +37,8 @@ function stopTable(tableId: number) {
</script>
<style>
@import "tailwindcss";
@import "tailwindcss-primeui";
<style>
.ActiveTables {
margin: 20px;
@@ -51,18 +49,21 @@ function stopTable(tableId: number) {
.ATTables {
padding-left: 50px;
}
.button-box {
padding: 10px;
}
}
</style>
<template>
<Card class="ActiveTables">
<template #header>
<template #title>
<h2>Active Tables</h2>
</template>
<template #content>
<DataTable class="ATTables" style="" :exportable="false" :value="activeTables">
<DataTable :exportable="false" :value="activeTables">
<Column field="table_name" header="Table Name" />
<Column field="table_link" header="Table Link">
<template #body="slotProps">
@@ -79,7 +80,7 @@ function stopTable(tableId: number) {
</Card>
<Card class="ActiveTables">
<template #header>
<template #title>
<h2>All Tables</h2>
</template>
@@ -93,10 +94,9 @@ function stopTable(tableId: number) {
</template>
</Column>
</DataTable>
<div class="flex justify-end">
<div class="button-box flex justify-content-end">
<Button label="New Table"/>
</div>
</template>
</Card>
</template>