male zmiany w css
This commit is contained in:
parent
16c9a75253
commit
d4ff3ff635
@ -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);
|
||||
}
|
||||
</style>
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
@ -1,19 +1,27 @@
|
||||
{% extends "base.html" %}
|
||||
{% block head %}
|
||||
<style>
|
||||
/* Poprawiona responsywność i centrowanie */
|
||||
.full-height-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
@media (max-width: 576px), (max-height: 600px) {
|
||||
@media (max-width: 768px) {
|
||||
.full-height-row {
|
||||
min-height: auto !important;
|
||||
min-height: auto;
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 577px) and (min-height: 600px) {
|
||||
.full-height-row {
|
||||
min-height: calc(100vh - 56px) !important;
|
||||
}
|
||||
.card {
|
||||
width: 100%;
|
||||
max-width: 420px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
@ -1,21 +1,29 @@
|
||||
{% extends "base.html" %}
|
||||
{% block head %}
|
||||
<style>
|
||||
<style>
|
||||
@media (max-width: 576px), (max-height: 600px) {
|
||||
/* Poprawiona responsywność i centrowanie */
|
||||
.full-height-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.full-height-row {
|
||||
min-height: auto !important;
|
||||
min-height: auto;
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
@media (min-width: 577px) and (min-height: 600px) {
|
||||
.full-height-row {
|
||||
min-height: calc(100vh - 56px) !important;
|
||||
}
|
||||
|
||||
.card {
|
||||
width: 100%;
|
||||
max-width: 420px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
|
Loading…
x
Reference in New Issue
Block a user