From dbfac00555d3c9f5c068fe0676e9b844b4e54aca Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sun, 18 Sep 2022 19:12:28 +0200 Subject: [PATCH] make shop nicer --- files/templates/hats.html | 29 +++++++++++++++++++++++++++++ files/templates/shop.html | 31 +++++++++++++++++++++++++++++-- 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/files/templates/hats.html b/files/templates/hats.html index 45768078dd..4a06aeb2e7 100644 --- a/files/templates/hats.html +++ b/files/templates/hats.html @@ -13,8 +13,37 @@ width: 80%; } } + + .shop-tab { + display: inline-flex; + max-width: 46.6%; + letter-spacing: 3px; + } + + .shop-tab.active { + background-color: var(--primary) !important; + pointer-events: none !important; + cursor: default !important; + } +
+
+ +
+
+
hats banner
Number of hats you bought: {{v.num_of_owned_hats}}
diff --git a/files/templates/shop.html b/files/templates/shop.html index 6f34e51930..1192a60f8b 100644 --- a/files/templates/shop.html +++ b/files/templates/shop.html @@ -19,8 +19,37 @@ width: 80%; } } + + .shop-tab { + display: inline-flex; + max-width: 46.6%; + letter-spacing: 3px; + } + + .shop-tab.active { + background-color: var(--primary) !important; + pointer-events: none !important; + cursor: default !important; + } +
+
+ +
+
+
shop banner

{{SHOP_FLAVOR}} Earn coins.

@@ -31,8 +60,6 @@ {% if FEATURES['PROCOINS'] %}
Your current marseybux: {{"{:,}".format(v.procoins)}}
{% endif %} - -
Buy hats here!
{% endblock %}