madelinelise
11/26/2019 - 8:18 PM

Vertically Center - Flexbox

// May want to make a mixin? :P
.container {
  display: flex;
  justify-content: center;
  min-height: 100vh; //Doesn't need to be 100vh, just need a min height otherwise it will stretch to content, giving it no center.
}