mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-10 01:24:20 +02:00
37 lines
525 B
SCSS
Executable File
37 lines
525 B
SCSS
Executable File
@import "../../theme/variables";
|
|
@import "../../theme/mixins";
|
|
|
|
.Login {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
}
|
|
|
|
.form {
|
|
@include page-content-wrapper;
|
|
}
|
|
|
|
.LoginIntro {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.formLine {
|
|
padding: 5px 0;
|
|
|
|
label {
|
|
display: block;
|
|
margin-left: 5px;
|
|
}
|
|
input {
|
|
width: 100%;
|
|
border: 1px solid #333;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
|
|
.formButtons {
|
|
margin-top: 10px;
|
|
padding: 5px 0;
|
|
text-align: center;
|
|
}
|