Skip to content

Commit 2007ec1

Browse files
committed
Quartz sync: May 17, 2025, 11:24 AM
1 parent b0699bc commit 2007ec1

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

quartz/components/Explorer.tsx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,12 @@ export default ((userOpts?: Partial<Options>) => {
9696
</button>
9797
<button
9898
type="button"
99-
class="title-button desktop-explorer"
100-
// yoma - hide arrow button
101-
// class="title-button explorer-toggle desktop-explorer"
99+
class="title-button explorer-toggle desktop-explorer"
102100
data-mobile={false}
103101
aria-expanded={true}
104102
>
105103
<h2>{opts.title ?? i18n(cfg.locale).components.explorer.title}</h2>
106-
{/* yoma - hide arrow button */}
107-
{/* <svg
104+
<svg
108105
xmlns="http://www.w3.org/2000/svg"
109106
width="14"
110107
height="14"
@@ -117,7 +114,7 @@ export default ((userOpts?: Partial<Options>) => {
117114
class="fold"
118115
>
119116
<polyline points="6 9 12 15 18 9"></polyline>
120-
</svg> */}
117+
</svg>
121118
</button>
122119
<div class="explorer-content" aria-expanded={false}>
123120
<OverflowList class="explorer-ul" />

quartz/components/styles/footer.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ footer {
33
margin-bottom: 4rem;
44
opacity: 0.7;
55

6-
& p {
7-
font-size: x-small;
8-
}
9-
106
& ul {
117
list-style: none;
128
margin: 0;

quartz/styles/custom.scss

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
11
@use "./base.scss";
22

33
// put your custom CSS here!
4+
footer {
5+
text-align: left;
6+
margin-bottom: 4rem;
7+
opacity: 0.7;
8+
9+
& p {
10+
font-size: x-small;
11+
}
12+
13+
& ul {
14+
list-style: none;
15+
margin: 0;
16+
padding: 0;
17+
display: flex;
18+
flex-direction: row;
19+
gap: 1rem;
20+
margin-top: -1rem;
21+
}
22+
}

0 commit comments

Comments
 (0)