diff --git a/assets/css/styles.css b/assets/css/styles.css index aaad89c..04e0158 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -4665,17 +4665,17 @@ textarea.form-control-lg { .card-grid { display: grid; grid-template-columns: 70% 30%; - grid-template-rows: auto; + grid-template-rows: min-content auto auto; } .card-grid-div { - grid-column: 1; + grid-column: span 2; grid-row: 2; } .card-grid-btn { grid-column: 2; - grid-row: 2; + grid-row: 3; } } diff --git a/templates/games.html b/templates/games.html index e394fcc..7f8abfa 100644 --- a/templates/games.html +++ b/templates/games.html @@ -18,22 +18,24 @@
+

{{project.title}}

+ {% if project.weblate %}{{ _("Translated by the Queerscriptors") }}{% endif %}
-

{{project.title}}

- {% if project.weblate %}{{ _("Translated by the Queerscriptors") }}{% endif %} {{project.body}}
-
- {% if project.weblate %} - {{ _("More") }} - {% else %} - {{ _("Download") }} - {% endif %} +
+
+ {% if project.weblate %} + {{ _("More") }} + {% else %} + {{ _("Download") }} + {% endif %} +
-{% endfor %} + {% endfor %} {% endblock %}