diff --git a/games/static/base.css b/games/static/base.css
index 7a9bd46..e8342a9 100644
--- a/games/static/base.css
+++ b/games/static/base.css
@@ -910,6 +910,18 @@ select {
height: 1.5rem;
}
+.h-24 {
+ height: 6rem;
+}
+
+.h-screen {
+ height: 100vh;
+}
+
+.min-h-24 {
+ min-height: 6rem;
+}
+
.min-h-screen {
min-height: 100vh;
}
@@ -946,6 +958,10 @@ select {
max-width: 20rem;
}
+.flex-1 {
+ flex: 1 1 0%;
+}
+
@keyframes spin {
to {
transform: rotate(360deg);
@@ -1082,6 +1098,22 @@ select {
padding-top: 0.25rem;
}
+.pt-8 {
+ padding-top: 2rem;
+}
+
+.pb-4 {
+ padding-bottom: 1rem;
+}
+
+.pb-8 {
+ padding-bottom: 2rem;
+}
+
+.pb-16 {
+ padding-bottom: 4rem;
+}
+
.text-center {
text-align: center;
}
diff --git a/games/templates/add_edition.html b/games/templates/add_edition.html
index 219c595..ae05699 100644
--- a/games/templates/add_edition.html
+++ b/games/templates/add_edition.html
@@ -18,8 +18,8 @@
|
+ name="submit_and_redirect"
+ value="Submit & Create Purchase" />
|
diff --git a/games/templates/add_game.html b/games/templates/add_game.html
index 7954a5d..8a70f4c 100644
--- a/games/templates/add_game.html
+++ b/games/templates/add_game.html
@@ -18,8 +18,8 @@
|
+ name="submit_and_redirect"
+ value="Submit & Create Edition" />
|
diff --git a/games/templates/add_purchase.html b/games/templates/add_purchase.html
index cab7f60..93dbabb 100644
--- a/games/templates/add_purchase.html
+++ b/games/templates/add_purchase.html
@@ -18,8 +18,8 @@
|
+ name="submit_and_redirect"
+ value="Submit & Create Session" />
|
diff --git a/games/templates/add_session.html b/games/templates/add_session.html
index de21487..e78f03b 100644
--- a/games/templates/add_session.html
+++ b/games/templates/add_session.html
@@ -19,8 +19,8 @@
+ data-target="{{ field.name }}"
+ data-type="toggle">Toggle text
diff --git a/games/templates/base.html b/games/templates/base.html
index 7ba30ae..03935a1 100644
--- a/games/templates/base.html
+++ b/games/templates/base.html
@@ -18,21 +18,21 @@
-
-
+
+ {% block content %}
+ No content here.
+ {% endblock content %}
-
- {% block content %}
- No content here.
- {% endblock content %}
-
- {% load version %}
- {% version %} ({% version_date %})
- {% block scripts %}
- {% endblock scripts %}
-
-