summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/basic/media.css
blob: f1188835badd45b9f34d06244d6f884f477b614f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.v-view {
	height: 100%;
	width: 100%;
	overflow: auto;
	outline: none;
	margin-top: -1px;
	border-top: 1px solid transparent;
	position: relative;
}

@media print {
	.v-generated-body {
		height: auto;
		min-height: 20cm;
		overflow: visible;
	}
	.v-app {
		height: auto;
		min-height: 20cm;
	}
	.v-view {
		overflow: visible;
	}
	.v-gridlayout {
		overflow: visible !important;
	}
}