@value inputHeight from '../dimensions.css';

.common {
  composes: common from './Input.css';
  display: inline-block;
  width: 100%;
}

.normal {
  composes: common;
  margin-bottom: 10px;
  height: inputHeight;
}

.embedded {
  composes: common;
  height: calc(inputHeight - 2px);
}
