1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-12-22 09:13:35 +01:00
This commit is contained in:
Matthias Kretschmann 2018-10-01 19:33:57 +02:00
parent ce7a96dbaa
commit d5b3adc32f
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 16 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export default class PostActions extends PureComponent {
<h1 className={styles.actionTitle}>Found something useful?</h1> <h1 className={styles.actionTitle}>Found something useful?</h1>
<p className={styles.actionText}> <p className={styles.actionText}>
Say thanks{' '} Say thanks{' '}
<button onClick={this.toggleModal}>with Bitcoins or Ether.</button> <button className="link" onClick={this.toggleModal}>with Bitcoins or Ether.</button>
</p> </p>
</article> </article>

View File

@ -83,6 +83,21 @@ a.btn {
} }
} }
button.link {
color: $link-color;
&:hover,
&:focus {
outline: 0;
color: lighten($link-color, 10%);
}
&:active {
transition: none;
color: darken($link-color, 10%);
}
}
// Primary Button // Primary Button
.btn-primary, .btn-primary,
a.btn-primary { a.btn-primary {