-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
65 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
// Just for dumi style | ||
import './app.less'; | ||
import './less/main.less'; | ||
import './less/markdown.less'; | ||
import './less/dumi.less'; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
html { | ||
scroll-behavior: smooth; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.markdown table { | ||
width: auto !important; | ||
} | ||
|
||
.markdown table td:first-child { | ||
font-weight: normal !important; | ||
} | ||
|
||
code { | ||
padding: 1px 5px !important; | ||
border-radius: 4px; | ||
background: rgba(0, 0, 0, 0.06) !important; | ||
box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1); | ||
border: 1px solid rgba(0,0,0,0.1); | ||
} |