@import '../../app.less';

.g-button-wrapper {
  display: inline-block;

  .g-button {
    display: inline-block;
    text-align: center;
  }
}

.g-button-wrapper.block {
  display: block;
  text-align: center;

  .g-button {
    display: block;
  }
}

.g-button-wrapper.basic {
  .g-button {
    line-height: 36px;
  }
}

.g-button-wrapper.basic.radius {
  .g-button {
    border-radius: 18px;
  }
}

.g-button-wrapper.default {
  .g-button {
    background: #41A6F3;
    color: #fff;
  }

  .g-button.touch {
    background: darken(#41A6F3, 10)
  }
}