
@import "../mixins/_center-block.less";

/**
 * Float and Clearfix Utilities
 *
 * Note: All values are CSS keywords (no spacing values).
 *
 * Intentionally hardcoded values:
 * - None - uses CSS keywords only (float, display, etc.)
 */

.clearfix {
  &:before,
  &:after {
    display: table;
    content: ' ';
  }
  &:after {
    clear: both;
  }
}

.center-block {
  .center-block();
}

.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

// Removed unused control utility - verified 0 usages: .top-right-controls
