change form width for better mobile styling

This commit is contained in:
2022-02-02 14:49:14 +02:00
parent f0d972f46b
commit 33604ac0dc
2 changed files with 29 additions and 16 deletions

View File

@ -15,6 +15,7 @@
* - HTML * - HTML
* - FLASH MESSAGE * - FLASH MESSAGE
* - FONTS * - FONTS
* - FORMS
* - ICONS * - ICONS
* - INPUTS * - INPUTS
* - LABELS * - LABELS
@ -596,6 +597,20 @@ html {
color: var(--danger); color: var(--danger);
} }
/*
* FORMS
*/
form {
width: 90%;
}
@media only screen and (min-width: 600px) {
form {
width: 100%;
}
}
/* /*
* ICONS * ICONS
*/ */

View File

@ -2,7 +2,6 @@
{%- block card %} {%- block card %}
<!-- CHANGE PASSWORD FORM --> <!-- CHANGE PASSWORD FORM -->
<div class="card center"> <div class="card center">
<div class="form-container">
<form id="changePassword" action="/settings/admin/change_password" method="post"> <form id="changePassword" action="/settings/admin/change_password" method="post">
<!-- input for current password --> <!-- input for current password -->
<input id="currentPassword" class="center input" name="current_password" type="password" placeholder="Current password" title="Current password" autofocus> <input id="currentPassword" class="center input" name="current_password" type="password" placeholder="Current password" title="Current password" autofocus>
@ -18,5 +17,4 @@
<!-- FLASH MESSAGE --> <!-- FLASH MESSAGE -->
{% include "snippets/flash_message" %} {% include "snippets/flash_message" %}
</div> </div>
</div>
{%- endblock card -%} {%- endblock card -%}