Skip to content

Commit

Permalink
Merge pull request #244 from iceljc/features/refine-chat-window
Browse files Browse the repository at this point in the history
Features/refine chat window
  • Loading branch information
iceljc authored Oct 10, 2024
2 parents 9f0a89e + f6f0f2c commit dc8ea68
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/lib/scss/custom/common/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,21 @@ button:focus {
pre {
-ms-overflow-style: none !important;
white-space: pre-wrap;
margin-top: 0px;
margin-bottom: 0px;
margin-top: 1em;
margin-bottom: 1em;

&:has(.language-sql),
&:has(.language-java),
&:has(.language-javascript),
&:has(.language-typescript),
&:has(.language-csharp),
&:has(.language-python),
&:has(.language-json) {
background-color: black;
color: white;
border-radius: 5px;
padding: 5px 10px;
}
}

pre::-webkit-scrollbar {
Expand All @@ -187,6 +200,12 @@ button:focus {
table {
margin-top: 1em !important;
margin-bottom: 1em !important;
border-radius: 5px;

th, td {
padding: 3px 5px !important;
border: 1px solid white;
}
}

p {
Expand Down

0 comments on commit dc8ea68

Please sign in to comment.