mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
28 lines
392 B
SCSS
28 lines
392 B
SCSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: auto;
|
|
}
|
|
h1 {
|
|
display: inline-block;
|
|
margin-bottom: 3rem;
|
|
font-size: 2.6rem;
|
|
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
width: 27.4%;
|
|
height: 2px;
|
|
margin-top: 5px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
// background-color: $primary_color;
|
|
}
|
|
}
|
|
label {
|
|
float: left;
|
|
}
|
|
input[type='email'] {
|
|
display: block;
|
|
}
|