diff options
Diffstat (limited to '174bg/handbook-vitepress/.vitepress/theme')
| -rw-r--r-- | 174bg/handbook-vitepress/.vitepress/theme/index.ts | 4 | ||||
| -rw-r--r-- | 174bg/handbook-vitepress/.vitepress/theme/style.css | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/174bg/handbook-vitepress/.vitepress/theme/index.ts b/174bg/handbook-vitepress/.vitepress/theme/index.ts new file mode 100644 index 0000000..617deeb --- /dev/null +++ b/174bg/handbook-vitepress/.vitepress/theme/index.ts @@ -0,0 +1,4 @@ +import DefaultTheme from "vitepress/theme"; +import "./style.css"; + +export default DefaultTheme; diff --git a/174bg/handbook-vitepress/.vitepress/theme/style.css b/174bg/handbook-vitepress/.vitepress/theme/style.css new file mode 100644 index 0000000..5c1c46e --- /dev/null +++ b/174bg/handbook-vitepress/.vitepress/theme/style.css @@ -0,0 +1,5 @@ +/* Match the source handbook's justified body text. */ +.vp-doc p, +.vp-doc li { + text-align: justify; +} |
