Sha256: 7f6b484eae0f7370e20bf1a6c0557d150f4b30b817b9752b98ff60aaffbd07f3

Contents?: true

Size: 681 Bytes

Versions: 1

Compression:

Stored size: 681 Bytes

Contents

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

html {
  position: relative;
}

body {
  display: flex;
  overflow: hidden;
}

.app-wrapper {
  flex: 1;

  display: flex;
  align-items: stretch;

  position: relative;
  overflow: hidden;

  width: 100%;
  min-width: 0;
}

.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

1 entries across 1 versions & 1 rubygems

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