Sha256: 202b1097a7146ee12e987afd5332a7a3fc25502761a340a63146996c23262460

Contents?: true

Size: 704 Bytes

Versions: 3

Compression:

Stored size: 704 Bytes

Contents

html, body {
  min-height: 100dvh;
  height: 100%;
}

html {
  position: relative;
}

body {
  overflow: hidden;
}

.app-wrapper {
  flex: 1;

  display: flex;
  align-items: stretch;

  position: relative;
  overflow: hidden;

  width: 100%;
  height: 100%;

  min-width: 0;
  min-height: 100dvh;
}

.app-container {
  flex: 1;
  display: flex;
  flex-direction: column;

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;
}

.app-main {
  flex: 1 0 auto;

  display: flex;
  flex-direction: column;
}

@include media-breakpoint-down(md) {
  html, body {
    height: auto;
  }

  .app-container {
    padding-top: $header-height;
    -webkit-overflow-scrolling: auto;
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
trestle-0.10.1 frontend/css/layout/_base.scss
trestle-0.10.0 frontend/css/layout/_base.scss
trestle-0.10.0.pre2 frontend/css/layout/_base.scss