This commit is contained in:
Youri Wims 2019-05-28 11:42:17 -04:00
Родитель d446b08c9b
Коммит 55852819a4
2 изменённых файлов: 4 добавлений и 13 удалений

Просмотреть файл

@ -24,7 +24,7 @@ class SignOutButton extends React.Component {
render() {
return (
<button className="btn-link inline-link" onClick={(event) => this.handleLogOutBtnClick(event)}>Sign out</button>
<button className="btn btn-link inline-link" onClick={(event) => this.handleLogOutBtnClick(event)}>Sign out</button>
);
}
}

Просмотреть файл

@ -42,24 +42,15 @@ h2 {
}
.btn-link {
background: transparent;
border: none;
font-family: inherit;
cursor: pointer;
color: $dark-blue;
&.inline-link {
font-family: inherit;
font-size: inherit;
line-height: inherit;
vertical-align: inherit;
padding: 0;
border: 0;
}
&:hover,
:focus,
:active {
text-decoration: underline;
color: $dark-blue;
@include link-text-decoration;
}
}