@import '../style/var.less';

.van-picker-column {
  overflow: hidden;
  text-align: center;
  .theme(color, '@picker-option-text-color');
  .theme(font-size, '@picker-option-font-size');

  &__item {
    padding: 0 10px;

    &--selected {
      .theme(font-weight, '@font-weight-bold');
      .theme(color, '@picker-option-selected-text-color');
    }

    &--disabled {
      .theme(opacity, '@picker-option-disabled-opacity');
    }
  }
}
