This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/src/components/Button/Button.scss

37 lines
636 B
SCSS

@import "../../variables.scss";
.button {
display: inline-block;
background: $green;
color: $white;
border-radius: 4px;
box-shadow: 0 0 16px 0 rgba(87, 181, 96, 0.1);
line-height: 48px;
font-weight: bold;
padding: 0 32px;
transition: 0.2s background-color, 0.2s color, 0.2s transform;
@media (min-width: $largebp) {
font-size: 18px;
}
&:hover {
background-color: $greenHover;
transform: translateY(-2px);
}
svg {
display: inline-block;
vertical-align: middle;
margin-top: -2px;
}
&.iconLeft svg {
margin-right: 12px;
}
&.iconRight svg {
margin-left: 12px;
}
}