Skip to content

Commit

Permalink
🐛 [BUG] Resolve minior verison upgrade merge bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
domogami committed Oct 30, 2024
1 parent 18c8ad8 commit 94cc139
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Doms-Digital-Garden",
"description": "🌱 A garden of my thoughts and notes",
"private": false,
"version": "4.1.4",
"version": "4.4.0",
"type": "module",
"author": "Dominick Lee <[email protected]>",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions quartz.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ const config: QuartzConfig = {
},
},
},
locale: "en-US"
},
plugins: {
transformers: [
Expand Down
8 changes: 4 additions & 4 deletions quartz/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ export default ((opts?: Options) => {
const links = opts?.links ?? []
return (
<footer class={`${displayClass ?? ""}`}>
<hr />
<p>
{i18n(cfg.locale).components.footer.createdWith}{" "}
<a href="https://quartz.jzhao.xyz/">Quartz v{version}</a> © {year}
</p>
<ul>
{Object.entries(links).map(([text, link]) => (
<li>
<a href={link}>{text}</a>
</li>
))}
</ul>
<p>
Created with <a href="https://quartz.jzhao.xyz/">Quartz v{version}</a>, © {year}
</p>
</footer>
)
}
Expand Down
7 changes: 5 additions & 2 deletions quartz/components/styles/explorer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ button#explorer {
list-style: none;
overflow: hidden;
scrollbar-color: var(--tertiary) var(--light);
max-height: none;
transition: max-height 0.35s ease;
overflow-y: auto;
max-height: 100%;
transition:
max-height 0.35s ease,
visibility 0s linear 0s;
margin-top: 0.5rem;
visibility: visible;

Expand Down
3 changes: 2 additions & 1 deletion quartz/components/styles/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
flex-grow: 0.3;
}

& > #search-icon {
& > .search-button {
background-color: var(--truelightgray);
border: none;
border-radius: 4px;
font-family: inherit;
font-size: inherit;
Expand Down
2 changes: 1 addition & 1 deletion quartz/styles/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ code {
font-family: var(--codeFont);
border-radius: 5px;
padding: 0.1rem 0.2rem;
background: var(--codebackground);
background: var(--lightgray);
}

tbody,
Expand Down

0 comments on commit 94cc139

Please sign in to comment.