add tailwind to gitignore as generated on the fly

This commit is contained in:
pacnpal
2024-11-13 15:42:57 +00:00
parent 1ee4b00961
commit a5ebeb51dc
2 changed files with 14 additions and 1 deletions

3
.gitignore vendored
View File

@@ -32,4 +32,5 @@ parks/__pycache__/views.cpython-312.pyc
.venv/lib/python3.12/site-packages .venv/lib/python3.12/site-packages
thrillwiki/__pycache__/urls.cpython-312.pyc thrillwiki/__pycache__/urls.cpython-312.pyc
thrillwiki/__pycache__/views.cpython-312.pyc thrillwiki/__pycache__/views.cpython-312.pyc
.pytest_cache.github .pytest_cache.github
static/css/tailwind.css

View File

@@ -2547,6 +2547,10 @@ select {
max-width: none; max-width: none;
} }
.max-w-\[800px\] {
max-width: 800px;
}
.flex-1 { .flex-1 {
flex: 1 1 0%; flex: 1 1 0%;
} }
@@ -3204,6 +3208,14 @@ select {
font-weight: 600; font-weight: 600;
} }
.uppercase {
text-transform: uppercase;
}
.lowercase {
text-transform: lowercase;
}
.leading-tight { .leading-tight {
line-height: 1.25; line-height: 1.25;
} }