Skip to content

Commit 92db7e4

Browse files
committed
feat: rounded borders
1 parent cfd3e33 commit 92db7e4

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

style.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@ $Black800: #424242;
2222
background-color: $White;
2323
color: $Black;
2424
border: 1px solid $Black;
25+
border-radius: 4px;
2526
} @else if $BgColor == "InlineCode-Dark" {
2627
// background-color: $Black800;
2728
background-color: $Black;
2829
color: $White;
2930
border: 1px solid $White;
31+
border-radius: 4px;
3032
}
3133
}
3234

@@ -82,6 +84,7 @@ pre {
8284
@include BgAndTextColorChanger($BgColor: "White");
8385
font-size: 1.1em;
8486
border: 2px solid $Black;
87+
border-radius: 7px;
8588
padding: 10px;
8689
white-space: pre-wrap;
8790
}
@@ -130,6 +133,7 @@ blockquote {
130133
pre {
131134
@include BgAndTextColorChanger($BgColor: "Black");
132135
border: 2px solid $White;
136+
border-radius: 7px;
133137
}
134138

135139
a {

0 commit comments

Comments
 (0)