mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
25 lines
366 B
SCSS
25 lines
366 B
SCSS
|
@import './colors.scss';
|
||
|
@import './fonts.scss';
|
||
|
|
||
|
.button {
|
||
|
display: inline-block;
|
||
|
height: 50px;
|
||
|
padding: 0 15px;
|
||
|
|
||
|
font-family: $robotoCondensed;
|
||
|
color: #fff;
|
||
|
font-size: 18px;
|
||
|
line-height: 50px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.blue {
|
||
|
composes: button;
|
||
|
|
||
|
background: $blue;
|
||
|
|
||
|
&:hover {
|
||
|
background: lighter($blue);
|
||
|
}
|
||
|
}
|