// Static form control text
//
// Apply class to a `p` element to make any string of text align with labels in
// a horizontal form layout.
.form-control-static {
  // Size it appropriately next to real form controls
  padding-top: ($padding-base-vertical + 1);
  padding-bottom: ($padding-base-vertical + 1); // Remove default margin from `p`
  margin-bottom: 0; //min-height: ($line-height-computed + $font-size-base);
  min-height: (1.75 + 1.4rem);
  &.input-lg,
  &.input-sm {
    padding-left: 0;
    padding-right: 0;
  }
}