mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
🐛 Fixed code injection input sizes when they have long lines (#1394)
no issue
This commit is contained in:
parent
abc0c1147a
commit
d6c016e770
@ -530,8 +530,8 @@
|
||||
padding: 0;
|
||||
min-width: 250px;
|
||||
min-height: 300px;
|
||||
max-width: 1180px;
|
||||
width: 100%;
|
||||
max-width: 1130px;
|
||||
width: calc(100vw - 360px);
|
||||
height: auto;
|
||||
line-height: 22px;
|
||||
border: 1px solid var(--lightgrey);
|
||||
@ -559,6 +559,12 @@
|
||||
color: #000;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.settings-code-editor {
|
||||
width: calc(100vw - 8vw - 40px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Labs
|
||||
|
Loading…
Reference in New Issue
Block a user