Newer
Older
CrypticOreWallet / src / layouts / main / MainLayout.scss
@Drew Lemmy Drew Lemmy on 19 Sep 2020 341 bytes fix: responsiveness tweaks
@import "~scss/variables";

// Fix main container height overflow issues
html, body {
  height: 100%;
}

#root {
  height: 100%;
}

#main-container {
  padding-top: $navbar-height;

  overflow: scroll;

  height: calc(100% - #{$navbar-height});

  // Fix some strange wrapping issues on small screens
  &>.row {
    flex-wrap: nowrap;
  }
}