// Justify Everything

.justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  > * {
    display: table-cell;
    width: 1%;
    float: none !important;
  }
}
