Skip to content

Commit

Permalink
Adds overflow:auto to popup content to allow it to scroll in lower res.
Browse files Browse the repository at this point in the history
Fixes #650

Signed-off-by: Abijeet <[email protected]>
  • Loading branch information
Abijeet committed Jan 5, 2018
1 parent 6988a6f commit f2c6276
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions resources/assets/sass/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@
display: flex;
align-self: flex-start;
}

.popup-content {
overflow-y: auto;
}
}

.corner-button {
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/code-editor.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<button class="overlay-close neg corner-button button" @click="hide()">x</button>
</div>

<div class="padded">
<div class="padded popup-content">
<div class="form-group">
<label for="code-editor-language">{{ trans('components.code_language') }}</label>
<div class="lang-options">
Expand Down

0 comments on commit f2c6276

Please sign in to comment.