newsreader/src/newsreader/scss/components/button/_button.scss
sonny 858f84aaad Refactor endpoint tests
Replace force_login calls with login call from client class in setUp
2019-10-28 21:35:19 +01:00

26 lines
362 B
SCSS

.button {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 50px;
border: none;
border-radius: 2px;
font-family: $button-font;
&:hover {
cursor: pointer;
}
&--confirm {
color: $white;
background-color: $confirm-green;
&:hover {
background-color: lighten($confirm-green, +5%);
}
}
}