Make login and join buttons larger on mobile devices

Update size attribute for login and join buttons in enhanced_header.html from 'sm' to 'default' to increase touch target size on mobile.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 8c9d0d4b-ca6f-406f-bbbe-b9c86b7a6f6e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d6d61dac-164d-45dd-929f-7dcdfd771b64/8c9d0d4b-ca6f-406f-bbbe-b9c86b7a6f6e/dTiRCJZ
This commit is contained in:
pac7
2025-09-21 16:33:20 +00:00
committed by pacnpal
parent 988c2b2f06
commit 3896dcedcf
2 changed files with 6 additions and 2 deletions

View File

@@ -39,6 +39,10 @@ externalPort = 80
localPort = 34277
externalPort = 3000
[[ports]]
localPort = 36949
externalPort = 3001
[deployment]
deploymentTarget = "autoscale"
run = ["gunicorn", "--bind=0.0.0.0:5000", "--reuse-port", "thrillwiki.wsgi:application"]

View File

@@ -315,7 +315,7 @@ Includes: Browse menu, advanced search, theme toggle, user dropdown, mobile menu
hx-swap="beforeend"
class="cursor-pointer"
>
{% include 'components/ui/button.html' with variant='outline' size='sm' text='Login' %}
{% include 'components/ui/button.html' with variant='outline' size='default' text='Login' %}
</div>
<div
hx-get="{% url 'account_signup' %}"
@@ -323,7 +323,7 @@ Includes: Browse menu, advanced search, theme toggle, user dropdown, mobile menu
hx-swap="beforeend"
class="cursor-pointer"
>
{% include 'components/ui/button.html' with variant='default' size='sm' text='Join' %}
{% include 'components/ui/button.html' with variant='default' size='default' text='Join' %}
</div>
</div>
{% endif %}