change form width for better mobile styling

This commit is contained in:
glyph 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
* - FLASH MESSAGE
* - FONTS
* - FORMS
* - ICONS
* - INPUTS
* - LABELS
@ -596,6 +597,20 @@ html {
color: var(--danger);
}
/*
* FORMS
*/
form {
width: 90%;
}
@media only screen and (min-width: 600px) {
form {
width: 100%;
}
}
/*
* ICONS
*/

View File

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