mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-16 15:08:56 +00:00
35 lines
902 B
Twig
35 lines
902 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
{% set styles %}
|
|
#grav-login {
|
|
max-width: 32em;
|
|
}
|
|
#grav-login .form-actions {
|
|
text-align: right;
|
|
padding: 1em 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 1em;
|
|
flex-wrap: wrap;}
|
|
#grav-login button {
|
|
margin: 1em 0;
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
#grav-login .form-actions {
|
|
flex-direction: column;
|
|
}
|
|
{% endset %}
|
|
{% do assets.addInlineCss(styles) %}
|
|
{% endblock %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include 'partials/messages.html.twig' %}
|
|
{% include 'partials/forgot-form.html.twig' %}
|
|
{% endblock %}
|