Files
fredy/ui/src/views/login/login.less
Alexander Roidl ae4b6d1f40 Mobile view and wording (#151)
* feat(ui): simplified titles and adjusted some wording

* style(ui): simplified some views for mobile

* style(ui): make job table responsive for mobile

* style(ui): login button gap

* style(ui): dont hide mobile columns

* fix: method return type
2025-08-01 09:51:42 +02:00

36 lines
547 B
Plaintext

.login {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
&__bgImage {
background-size: cover;
filter: blur(8px);
-webkit-filter: blur(8px);
position: absolute;
top: 0;
left: 0;
z-index: 0;
right: 0;
bottom: 0;
}
&__loginWrapper {
border: 1px solid #555050;
border-radius: 30px;
z-index: 1;
background-color: #151313ab;
display: flex;
flex-direction: column;
padding: 2rem;
gap: 1rem;
}
form {
z-index: 1;
}
}