diff --git a/templates/base.html b/templates/base.html index 848df44..bf7b9ea 100644 --- a/templates/base.html +++ b/templates/base.html @@ -199,6 +199,25 @@ .btn-logout { color: #fff; } + + html, body { + height: 100%; + overflow: hidden; /* Uniknięcie przewijania na dużych ekranach */ + } + + .container { + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + } + + .full-height-row { + display: flex; + align-items: center; + justify-content: center; + min-height: calc(100vh - 56px); + } {% block head %}{% endblock %} diff --git a/templates/login.html b/templates/login.html index 8273613..a81e8b7 100644 --- a/templates/login.html +++ b/templates/login.html @@ -1,19 +1,27 @@ {% extends "base.html" %} {% block head %} {% endblock %} diff --git a/templates/register.html b/templates/register.html index d07a759..7d416d7 100644 --- a/templates/register.html +++ b/templates/register.html @@ -1,21 +1,29 @@ {% extends "base.html" %} {% block head %} - {% endblock %} {% block content %}