annotate src/app/app.component.css @ 205:b638c714bd1d

Implement pinch-zoom manually using touchevents, as HammerJS was preventing scrolling the page. This should also allow for smoother transitioning between gestures - needs testing on a device.
author Lucas Thompson <dev@lucas.im>
date Fri, 24 Mar 2017 15:27:07 +0000
parents 038d248602d5
children 53ea6406d601
rev   line source
dev@4 1 .app-toolbar-filler {
dev@4 2 flex: 1 1 auto;
dev@4 3 }
dev@4 4
dev@87 5 md-sidenav-container {
dev@190 6 height: 100%;
dev@190 7 width: 100%;
dev@190 8 position: absolute;
dev@4 9 }
dev@4 10
dev@4 11 md-sidenav {
dev@7 12 text-align: center;
dev@4 13 }
dev@21 14
dev@190 15 .app-container {
dev@190 16 height: 100%;
dev@190 17 display: flex;
dev@190 18 flex-direction: column;
dev@21 19 }
dev@21 20
dev@190 21 .app-header {
dev@190 22 flex: 0 0 auto;
dev@28 23 }
dev@190 24
dev@190 25 .app-content {
dev@190 26 flex: 1 1 auto;
dev@190 27 overflow-y: auto;
dev@190 28 position: relative;
dev@190 29 }
dev@190 30
dev@190 31 .app-footer {
dev@190 32 flex: 0 0 auto;
dev@190 33 }