73 lines
932 B
SCSS
73 lines
932 B
SCSS
.auth-outer
|
|
{
|
|
background-color: transparent !important;
|
|
|
|
ion-view
|
|
{
|
|
background-color: transparent;
|
|
box-shadow: none !important; // Need to set this with important to prevent awefull vertical line when transitioning
|
|
}
|
|
|
|
ion-header-bar
|
|
{
|
|
background-color: transparent;
|
|
|
|
*
|
|
{
|
|
color: $auth-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.auth-view
|
|
{
|
|
.row
|
|
{
|
|
height: 100%;
|
|
}
|
|
|
|
.bottom-content
|
|
{
|
|
padding-top: 0px;
|
|
border: none;
|
|
|
|
.button
|
|
{
|
|
margin: 0px;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.alternative-actions
|
|
{
|
|
margin: 0px 10px;
|
|
|
|
.button
|
|
{
|
|
padding: 0px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.sign-up
|
|
{
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.toggle-view-anchor
|
|
{
|
|
height: $line-height-computed + $font-size-base;
|
|
line-height: $line-height-computed + $font-size-base;
|
|
position: absolute;
|
|
right: 0px;
|
|
text-transform: uppercase;
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
color: $show-hide-password-color;
|
|
|
|
*
|
|
{
|
|
color: $show-hide-password-color;
|
|
}
|
|
}
|