//
//  Common
//  _____________________________________________

& when (@media-common = true) {
    // primary buttons
    button,
    .primary .action,
    a.action.primary {
        // already setting border-radius property in vendor\magento\theme-frontend-luma\web\css\source\_buttons.less
        letter-spacing: .07em;
        text-transform: uppercase;
    }
    // secondary buttons
    .secondary .action,
    a.action.secondary {
        border-radius: @button__border-radius;
        letter-spacing: .07em;
        // not setting text-transform uppercase here, otherwise "forgot your password" and similar links will be affected
    }
    button span {
        line-height: normal;
    }
    button:not(.primary) {
        box-shadow: none;
    }
}


//
//  Mixins
//  _____________________________________________

.lib-button-primary {
    border-radius: 30px;
    letter-spacing: .07em;
    text-transform: uppercase;
}
