@media (min-width: 576px) {
  /* Styling for screen width test */
  .screen-width-test {
    background-color: #00f;
  }

  .minibar {
    flex-direction: column;

    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;

    width: 70px;
    max-width: 70px;
    min-width: 70px;

    position: sticky;
    top: 0;
  }

  .minibar-nav {
    flex-direction: column;
    justify-content: unset;
  }

  .minibar-nav > div,
  .minibar-nav > ul {
    display: flex !important;
  }

  .minibar-header {
    flex-direction: column;
    justify-content: center;
    min-height: 56px;
  }

  .minibar-body {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
