Compare commits

..

No commits in common. "967e1bee2776e3e6321e38e18b53f2fd12b6b4e2" and "6ac006e3558854fdf9bf9ad7161439bc352af2ec" have entirely different histories.

3 changed files with 41 additions and 24 deletions

View File

@ -200,19 +200,6 @@
color: #fff;
}
/* Ustawienia globalne */
html, body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
}
/* Wrapper głównej zawartości, który rośnie, aby wypełnić przestrzeń */
.wrapper {
flex: 1;
}
</style>
{% block head %}{% endblock %}

View File

@ -1,12 +1,27 @@
{% extends "base.html" %}
{% block head %}
<style>
@media (min-width: 577px) and (min-height: 600px) {
/* Poprawiona responsywność i centrowanie */
.full-height-row {
min-height: calc(100vh - 56px) !important;
align-items: flex-start;
padding-top: 15%; /* lub inna wartość, która odpowiada Twoim potrzebom */
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding-top: 2rem;
}
@media (max-width: 768px) {
.full-height-row {
min-height: auto;
padding-top: 1rem;
padding-bottom: 1rem;
}
}
.card {
width: 100%;
max-width: 420px;
margin: auto;
}
</style>
{% endblock %}

View File

@ -1,12 +1,27 @@
{% extends "base.html" %}
{% block head %}
<style>
@media (min-width: 577px) and (min-height: 600px) {
/* Poprawiona responsywność i centrowanie */
.full-height-row {
min-height: calc(100vh - 56px) !important;
align-items: flex-start;
padding-top: 15%; /* lub inna wartość, która odpowiada Twoim potrzebom */
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding-top: 2rem;
}
@media (max-width: 768px) {
.full-height-row {
min-height: auto;
padding-top: 1rem;
padding-bottom: 1rem;
}
}
.card {
width: 100%;
max-width: 420px;
margin: auto;
}
</style>
{% endblock %}