Skip to content

Commit 7d64ff7

Browse files
committed
fix: typo and false positive errors
1 parent c5df9ad commit 7d64ff7

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

src/assets/css/markdown.styl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,7 @@
229229
color: #00000046;
230230
border: 0.06em solid;
231231
border-radius: 0.2em;
232-
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>')
233-
no-repeat center,
234-
white;
232+
background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http:\/\/www.w3.org/2000/svg" version="1.1" xml:space="preserve" fill="white" viewBox="0 0 9 9"><rect x="0" y="4.3" transform="matrix(-0.707 -0.7072 0.7072 -0.707 0.5891 10.4702)" width="4.3" height="1.6" /><rect x="2.2" y="2.9" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 12.1877 2.9833)" width="6.1" height="1.7" /></svg>') no-repeat center, white;
235233
background-color: var(--checkbox-background);
236234
background-size: 0;
237235
}

src/components/LeftBar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,13 +379,13 @@ $height = 100vh - $offset-top * 2;
379379
--offset-left: 35px;
380380
381381
--item-hover-background-color: unset;
382-
--$nav-hover-background-color: unset;
382+
--nav-hover-background-color: unset;
383383
384384
--width: unset;
385385
--height: unset;
386386
387-
--$nav-width: 35px;
388-
--$nav-gap: 0px;
387+
--nav-width: 35px;
388+
--nav-gap: 0px;
389389
390390
#left
391391
position: absolute;

vite.config.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ export default defineConfig({
2828
vueDevTools(),
2929

3030
// [vite-plugin-vue-xecades-note]
31-
vueXecadesNote({
32-
componentDir: "src/components/md",
33-
}),
31+
// @ts-ignore
32+
vueXecadesNote({ componentDir: "src/components/md" }),
3433
],
3534
resolve: {
3635
alias: {

0 commit comments

Comments
 (0)