mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 09:16:45 +00:00
fix: fix syntax error in gitignore for ignoring temp http request processing xml config
This commit is contained in:
parent
f0f4f255df
commit
8d50cea667
2
.gitignore
vendored
2
.gitignore
vendored
@ -134,7 +134,7 @@ dist
|
|||||||
cache
|
cache
|
||||||
|
|
||||||
# node generated xmlhttprequest file
|
# node generated xmlhttprequest file
|
||||||
.node-xmlhttprequest-sync-*]
|
.node-xmlhttprequest-sync-*
|
||||||
|
|
||||||
# frontmatter cms config
|
# frontmatter cms config
|
||||||
.frontmatter
|
.frontmatter
|
||||||
@ -15,16 +15,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Hide block based on theme */
|
/* Hide block based on theme */
|
||||||
html:not(.dark) pre.shiki[class*="dark"] {
|
html:not(.dark) pre.shiki[class*='dark'] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
html:not(.dark) pre.shiki[class*="light"] {
|
html:not(.dark) pre.shiki[class*='light'] {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
html.dark pre.shiki[class*="dark"] {
|
html.dark pre.shiki[class*='dark'] {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
html.dark pre.shiki[class*="light"] {
|
html.dark pre.shiki[class*='light'] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,7 +109,8 @@
|
|||||||
transform: scale(0.9);
|
transform: scale(0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
.vp-doc th, .vp-doc td {
|
.vp-doc th,
|
||||||
|
.vp-doc td {
|
||||||
padding: 6px 10px;
|
padding: 6px 10px;
|
||||||
border: 1px solid #8882;
|
border: 1px solid #8882;
|
||||||
}
|
}
|
||||||
@ -126,4 +127,3 @@
|
|||||||
width: unset;
|
width: unset;
|
||||||
height: unset;
|
height: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user