Исправлен баг на странице логина

This commit is contained in:
Никита Потапов 2023-10-15 20:49:38 +04:00
parent 3866ba5ce0
commit 28ac5a270c
2 changed files with 11 additions and 1 deletions

View File

@ -33,7 +33,7 @@
</div>
</div>
<div class="block w-100 h-100 d-flex justify-content-center align-items-center">
<form class="w-50">
<form id="login-form">
<legend class="text-center">Вход</legend>
<div class="mb-3">
<input type="text" class="form-control" id="inputLogin" placeholder="Логин">

View File

@ -57,3 +57,13 @@ header {
.bottom-menu span {
font-size: smaller;
}
#login-form {
width: 50%;
}
@media screen and (max-width: 576px) {
#login-form {
width: 75%;
}
}