Postgres Database Support #2

Merged
mthomson merged 3 commits from feature/database into main 2024-06-18 18:40:38 +00:00
2 changed files with 1 additions and 17 deletions
Showing only changes of commit 3f137e4d68 - Show all commits

View File

@ -554,30 +554,14 @@ video {
--tw-contain-style: ; --tw-contain-style: ;
} }
.static {
position: static;
}
.flex { .flex {
display: flex; display: flex;
} }
.table {
display: table;
}
.flex-col { .flex-col {
flex-direction: column; flex-direction: column;
} }
.content-center {
align-content: center;
}
.items-center {
align-items: center;
}
.border { .border {
border-width: 1px; border-width: 1px;
} }

View File

@ -1,6 +1,6 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: [ "./**/*.html", "./**/*.templ", "./**/*.go", ], content: [ "./**/*.html", "./**/*.templ" ],
theme: { theme: {
extend: {}, extend: {},
}, },