@sugarat/theme 0.1.43 → 0.1.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sugarat/theme",
3
- "version": "0.1.43",
3
+ "version": "0.1.45",
4
4
  "description": "简约风的 Vitepress 博客主题,sugarat vitepress blog theme",
5
5
  "main": "src/index.ts",
6
6
  "exports": {
@@ -132,7 +132,6 @@ const PopoverValue = (
132
132
 
133
133
  <style lang="scss" scoped>
134
134
  .theme-blog-popover {
135
- color: rgba(60, 60, 67);
136
135
  width: 258px;
137
136
  position: fixed;
138
137
  top: 80px;
@@ -12,7 +12,7 @@ html {
12
12
  // --blog-theme-color: #409eff;
13
13
  }
14
14
 
15
- html[class='dark'] {
15
+ html.dark {
16
16
  --bg-gradient: 20, 20, 20;
17
17
  --bg-gradient-home: 20, 20, 20;
18
18
  --box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.6);
@@ -125,3 +125,11 @@ html[class='dark'] {
125
125
  border-radius: 4px;
126
126
  background-color: var(--vp-c-brand-1);
127
127
  }
128
+
129
+
130
+ main .vp-doc a{
131
+ text-decoration: none;
132
+ }
133
+ main .vp-doc a:hover{
134
+ text-decoration: underline dotted;
135
+ }