mirror of https://github.com/xwiki-labs/cryptpad
Fix overflow issues on small screen
This commit is contained in:
parent
1401925f5a
commit
7456c0012c
|
@ -52,6 +52,12 @@ body > .non-realtime:first-child + * {
|
|||
margin-top: 0;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
body {
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.cke_editable
|
||||
{
|
||||
font-size: 16px;
|
||||
|
|
|
@ -146,6 +146,9 @@
|
|||
flex: 1;
|
||||
max-width: 100%;
|
||||
resize: none;
|
||||
.CodeMirror-sizer > div {
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
}
|
||||
#cp-app-code-preview {
|
||||
display: none !important;
|
||||
|
|
|
@ -147,6 +147,16 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media (max-width: @browser_media-medium-screen) {
|
||||
#cp-app-slide-editor {
|
||||
#cp-app-slide-editor-container {
|
||||
.CodeMirror-sizer > div {
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Slide position (print mode) */
|
||||
@ratio:0.9;
|
||||
@media print {
|
||||
|
|
Loading…
Reference in New Issue