Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/scss/_resizable-bootstrap-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
absorb the remaining space instead of holding col-xl-8's 66.66% max-width. */
.row > main {
flex: 1 1 0;
min-width: 0;
max-width: none;
width: auto;
}
Expand Down
11 changes: 11 additions & 0 deletions assets/scss/_styles_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ body {
word-wrap: normal;
background-color: $gray-900;
padding: $spacer;
overflow-x: auto;
max-width: 100%;

>code {
background-color: inherit !important;
Expand All @@ -91,6 +93,15 @@ body {
}
}

.highlight {
overflow-x: auto;
max-width: 100%;

pre {
overflow-x: visible;
}
}
Comment thread
KumarNirupam1 marked this conversation as resolved.

img,
.md__image img,
img.md-image-responsive {
Expand Down
Loading