@mixin vf-u-layout {
  .u-fixed-width {
    @extend %fixed-width-container;
  }

  // stylelint-disable selector-max-type -- table elements can use selector types
  .u-table-layout--auto {
    &,
    table {
      table-layout: auto !important;
    }
  }

  .u-table-layout--fixed {
    &,
    table {
      table-layout: fixed !important;
    }
  }
  // stylelint-enable selector-max-type
}
