Fix code app present mode on mobile #460

pull/1/head
yflory 4 years ago
parent c011b3045c
commit 92bc7e29dd

@ -129,13 +129,28 @@
} }
@media (max-width: @browser_media-medium-screen) { @media (max-width: @browser_media-medium-screen) {
#cp-app-code-container { #cp-app-code-editor {
flex: 1; &.cp-app-code-present {
max-width: 100%; #cp-app-code-container { display: none !important; }
resize: none; #cp-app-code-preview {
} flex: 1;
#cp-app-code-preview { max-width: 100%;
display: none !important; border: 0;
#cp-app-code-preview-content {
margin: 10px;
}
}
}
&:not(.cp-app-code-present) {
#cp-app-code-container {
flex: 1;
max-width: 100%;
resize: none;
}
#cp-app-code-preview {
display: none !important;
}
}
} }
} }
#cp-app-code-print { #cp-app-code-print {

Loading…
Cancel
Save