Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohamadaliakbari/626b866eefa215ecb1d82466d9436091 to your computer and use it in GitHub Desktop.
Save mohamadaliakbari/626b866eefa215ecb1d82466d9436091 to your computer and use it in GitHub Desktop.
Full height sidebar menu ready for responsive design just using flex.
  html, body {
    height: 100%;
  }

  #app {
    display: flex;
    min-height: 100%;
  }

  .sidebar {
    width: 280px;
    background-color: aquamarine;
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment