Skip to content

Commit 59ab1f6

Browse files
committed
Update Prettier and Rimraf dependencies, fix CSS quotes
Upgraded Prettier to 3.7.0 and Rimraf to 6.1.2 in package.json and package-lock.json for improved compatibility and bug fixes. Updated CSS selectors in custom.css to use single quotes for consistency and style improvements.
1 parent 9d60f4a commit 59ab1f6

File tree

3 files changed

+27
-52
lines changed

3 files changed

+27
-52
lines changed

package-lock.json

Lines changed: 20 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
"eslint-plugin-prettier": "^5.5.4",
7373
"jest": "^30.2.0",
7474
"parse-glob": "3.0.4",
75-
"prettier": "3.6.2",
76-
"rimraf": "6.0.1",
75+
"prettier": "3.7.0",
76+
"rimraf": "6.1.2",
7777
"rollup": "4.53.3",
7878
"typescript": "5.4.5"
7979
},

website/src/custom.css

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ main h2 em {
3434
margin-top: 0 !important;
3535
}
3636

37-
.sl-markdown-content a[href^="https://"]::after,
38-
.sidebar-content a[href^="https://"]::after
39-
{
37+
.sl-markdown-content a[href^='https://']::after,
38+
.sidebar-content a[href^='https://']::after {
4039
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
4140
background-position: center;
4241
background-repeat: no-repeat;
@@ -48,14 +47,12 @@ main h2 em {
4847
width: 11px;
4948
}
5049

51-
[data-theme="dark"] .sl-markdown-content a[href^="https://"]::after,
52-
[data-theme="dark"] .sidebar-content a[href^="https://"]::after
53-
{
50+
[data-theme='dark'] .sl-markdown-content a[href^='https://']::after,
51+
[data-theme='dark'] .sidebar-content a[href^='https://']::after {
5452
filter: invert(1);
5553
}
5654

57-
.sl-link-card a[href^="https://"]::after
58-
{
55+
.sl-link-card a[href^='https://']::after {
5956
display: none;
6057
}
6158

0 commit comments

Comments
 (0)