summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/basic/media.css
diff options
context:
space:
mode:
Diffstat (limited to 'sass/tests/resources/basic/media.css')
-rw-r--r--sass/tests/resources/basic/media.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/sass/tests/resources/basic/media.css b/sass/tests/resources/basic/media.css
new file mode 100644
index 0000000000..f1188835ba
--- /dev/null
+++ b/sass/tests/resources/basic/media.css
@@ -0,0 +1,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;
+ }
+} \ No newline at end of file