Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 370 Bytes

primary-button.md

File metadata and controls

21 lines (19 loc) · 370 Bytes
title description author tags
Primary Button
Generates a styled primary button.
technoph1le
button,primary,css
@mixin primary-button($bg: #007bff, $color: #fff) {
  background-color: $bg;
  color: $color;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;

  &:hover {
    background-color: darken($bg, 10%);
  }
}