mirror of
https://github.com/documize/community.git
synced 2025-07-23 15:19:42 +02:00
29 lines
436 B
SCSS
29 lines
436 B
SCSS
|
.auth-box {
|
||
|
height: 450px;
|
||
|
width: 450px;
|
||
|
background-color: $color-white;
|
||
|
border: 1px solid $color-border;
|
||
|
display: inline-block;
|
||
|
border-radius : 3px;
|
||
|
color: $color-off-black;
|
||
|
padding: 20px 50px;
|
||
|
@extend .absolute-center;
|
||
|
|
||
|
.logo {
|
||
|
text-align: center;
|
||
|
margin: 0 auto;
|
||
|
|
||
|
> img {
|
||
|
height: 40px;
|
||
|
margin: 40px 0;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.sso-box {
|
||
|
text-align: center;
|
||
|
margin-top: 150px;
|
||
|
font-size: 24px;
|
||
|
color: $color-gray;
|
||
|
}
|