Newer
Older
CrypticOreWallet / src / layouts / main / MainLayout.scss
@Drew Lemmy Drew Lemmy on 20 Sep 2020 307 bytes fix: table layout tweaks
@import "~scss/variables";

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

#root {
  height: 100%;
}

#main-container {
  overflow: auto;

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

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