Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
πŸ› Fixed code injection input sizes when they have long lines (#1394)
Browse files Browse the repository at this point in the history
no issue
  • Loading branch information
peterzimon authored and kevinansfield committed Nov 18, 2019
1 parent b07954b commit f13e459
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/styles/layouts/settings.css
Expand Up @@ -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);
Expand Down Expand Up @@ -559,6 +559,12 @@
color: #000;
}

@media (max-width: 800px) {
.settings-code-editor {
width: calc(100vw - 8vw - 40px);
}
}



/* Labs
Expand Down

0 comments on commit f13e459

Please sign in to comment.