mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 05:55:56 +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
|
||||
|
||||
# node generated xmlhttprequest file
|
||||
.node-xmlhttprequest-sync-*]
|
||||
.node-xmlhttprequest-sync-*
|
||||
|
||||
# frontmatter cms config
|
||||
.frontmatter
|
||||
@ -15,16 +15,16 @@
|
||||
}
|
||||
|
||||
/* Hide block based on theme */
|
||||
html:not(.dark) pre.shiki[class*="dark"] {
|
||||
html:not(.dark) pre.shiki[class*='dark'] {
|
||||
display: none;
|
||||
}
|
||||
html:not(.dark) pre.shiki[class*="light"] {
|
||||
html:not(.dark) pre.shiki[class*='light'] {
|
||||
display: block;
|
||||
}
|
||||
html.dark pre.shiki[class*="dark"] {
|
||||
html.dark pre.shiki[class*='dark'] {
|
||||
display: block;
|
||||
}
|
||||
html.dark pre.shiki[class*="light"] {
|
||||
html.dark pre.shiki[class*='light'] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@ -109,7 +109,8 @@
|
||||
transform: scale(0.9);
|
||||
}
|
||||
|
||||
.vp-doc th, .vp-doc td {
|
||||
.vp-doc th,
|
||||
.vp-doc td {
|
||||
padding: 6px 10px;
|
||||
border: 1px solid #8882;
|
||||
}
|
||||
@ -126,4 +127,3 @@
|
||||
width: unset;
|
||||
height: unset;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user