mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
🐛 Fixed code injection input sizes when they have long lines (#1394)
no issue
This commit is contained in:
parent
82fee140e8
commit
20ecc20e20
@ -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