Select Git revision
Forked from an inaccessible project.
login.component.scss 873 B
@import '~sass/variables';
@import '~sass/mixins';
.content {
display: flex;
flex-flow: column nowrap;
align-items: center;
height: stretch;
background: $color-light-gray;
}
.login-form {
width: 100%;
max-width: 30em;
background: white;
border: 1px solid lightgray;
border-radius: 8px;
padding: 3em;
margin: 3em;
box-sizing: border-box;
}
.logo {
width: 100%;
max-width: 20em;
height: auto;
display: block;
margin: auto;
}
.form-group {
display: flex;
flex-flow: column;
}
.has-error {
input {
@include style-danger;
}
}
#login-btn {
margin-top: 1em;
}
.form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.block {
width: 100%;
}
.background {
background-color: rgb(3, 180, 180);
}