Skip to content
Snippets Groups Projects
Select Git revision
  • 7778ccaa61f688144e4c8daf6bfed511db00b1b7
  • master default protected
  • minion
  • development
4 results

Button.module.scss

Blame
  • Button.module.scss 1.23 KiB
    .button {
      font-size: 0.75rem;
      color: #5e72e4 !important;
      position: relative;
      transition: all 0.15s ease !important;
      letter-spacing: 0.025em;
      text-transform: none;
      will-change: transform;
      line-height: 1.5 !important;
      padding: 0.25rem 0.5rem !important;
      border-radius: 0.25rem !important;
      border-color: #fff;
      background-color: #fff !important;
      box-shadow: 0 4px 6px rgba(0.1, 0.1, 0.1, 0.11),
        0 1px 3px rgba(0.1, 0.1, 0.1, 0.8);
      font-weight: 600;
      line-height: 1.5 !important;
      display: inline-block;
      /* padding: 0.625rem 1.25rem!important; */
      cursor: pointer;
      -webkit-user-select: none;
      user-select: none;
      transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
      text-align: center;
      vertical-align: middle;
      border: 1px solid transparent;
      border-radius: 0.25rem !important;
      margin-right: 16px;
    
      &:hover {
        transform: translateY(-1px);
        box-shadow: 0 7px 14px rgba(0.5, 0.5, 0.93, 0.1),
          0 3px 6px rgba(0, 0, 0, 0.8);
        color: #212529 !important;
        border-color: #fff !important;
        background-color: #fff !important;
      }
      &.filledbutton {
        color: #fff;
        background-color: #5e72e4;
      }
    }