We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13faecf commit e60a2c4Copy full SHA for e60a2c4
client/modules/User/components/CookieConsent.jsx
@@ -25,6 +25,9 @@ const CookieConsentContainer = styled.div`
25
left: 0;
26
right: 0;
27
z-index: 9999;
28
+ @media print {
29
+ display: none;
30
+ }
31
`;
32
33
const CookieConsentDialog = styled.div`
client/styles/layout/_ide.scss
@@ -20,3 +20,27 @@
20
width: 100%;
21
height: 100%;
22
}
23
+
24
+@media print {
+ .sidebar {
+ width: 0;
+ .preview-console {
+ .CodeMirror {
+ height: auto;
34
+ overflow: visible;
35
+ position: relative;
36
37
+ .CodeMirror-scroll {
38
39
+ overflow-y: hidden;
40
41
+ .CodeMirror-vscrollbar,
42
+ .CodeMirror-hscrollbar,
43
+ .CodeMirror-gutters {
44
45
46
+}
0 commit comments