@import '../../style/variable';

.#{$namespace} {
  &-text-button {
    display: inline-flex;

    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-wrap: nowrap;

    cursor: pointer;
    
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.65);

    &:hover {
      color: #0067EE;
    }

    &--small {
      font-size: 12px;
    }
  }
}