@charset "utf-8";
// Copyright 2019, Oath Inc.
// Licensed under the terms of the MIT license. See LICENSE file in project root for terms.

.button-group {
    display: inline-flex;

    .button:first-child {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .button:last-child {
        margin-left: -1px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .button {
        min-width: 0px;
        padding: 0px 20px;
    }

    .has-icon {
        width: 38px;
    }
}