Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #434

Merged
merged 1 commit into from
Nov 12, 2024
Merged

fix #434

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
11 changes: 8 additions & 3 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,13 @@ mat-icon.size-45 {
pre code.hljs {
display: block;
overflow-x: auto;
padding: 1em
padding: 1em;

}

code.hljs {
padding: 3px 5px
padding: 3px 5px;
word-wrap: break-word;
}


Expand Down Expand Up @@ -263,13 +265,16 @@ pre.hljs code {
}
.code-line {
padding-left: 7px;
word-wrap: break-word;
word-break: break-all;
white-space: break-spaces;
}
.line-number {
min-width: 22px;
text-align: left;
width: 1%;
color: #ccc;
border-right: 1px solid #16bf6e
border-right: 1px solid #16bf6e;
}
}

Expand Down
Loading