This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-23 10:26:02 +02:00

45 lines
736 B
SCSS

//
// Buttons
//
.btn {
text-transform: $btn-text-transform;
letter-spacing: $btn-letter-spacing;
font-size: $btn-font-size;
cursor: pointer;
&:focus,
&.focus {
box-shadow: none;
}
&:not(:disabled):not(.disabled):active,
&:not(:disabled):not(.disabled).active {
box-shadow: none;
&:focus {
box-shadow: none;
}
}
&.btn-circle {
border-radius: rem(30px);
}
.btn-icon-left {
margin-right: 4px;
}
.btn-icon-right {
margin-left: 4px;
}
}
@include media-breakpoint-down(sm) {
.btn.btn-block-mobile {
display: block;
width: 100%;
}
}