mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-19 14:42:58 +05:30
32 lines
491 B
SCSS
32 lines
491 B
SCSS
|
@import '~components/ui/colors.scss';
|
||
|
|
||
|
.signIn {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.decline {
|
||
|
border-top: 1px solid lighter($black);
|
||
|
width: 42%;
|
||
|
flex-grow: 0;
|
||
|
}
|
||
|
|
||
|
.helpLinks {
|
||
|
margin: 8px 0;
|
||
|
|
||
|
color: #444;
|
||
|
text-align: center;
|
||
|
font-size: 16px;
|
||
|
|
||
|
a {
|
||
|
color: #444;
|
||
|
border-bottom: 1px dotted #444;
|
||
|
text-decoration: none;
|
||
|
transition: .25s;
|
||
|
|
||
|
&:hover {
|
||
|
border-bottom-color: #777;
|
||
|
color: #777;
|
||
|
}
|
||
|
}
|
||
|
}
|