Skip to content

Commit

Permalink
adjust styling
Browse files Browse the repository at this point in the history
  • Loading branch information
icco committed Mar 21, 2024
1 parent 26ca43c commit a10f5bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
6 changes: 3 additions & 3 deletions public/sitemap-0.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://writing.natwelch.com/feed.atom</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/drafts</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/feed.rss</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/post/728</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/post/738</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/post/736</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
Expand Down Expand Up @@ -684,6 +683,7 @@
<url><loc>https://writing.natwelch.com/post/453</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/post/452</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/post/451</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/feed.atom</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/000000</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/065</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/1</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
Expand Down Expand Up @@ -731,6 +731,7 @@
<url><loc>https://writing.natwelch.com/tag/comics</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/communication</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/communities</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/conference</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/cooking</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/creativity</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/culture</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
Expand Down Expand Up @@ -801,7 +802,6 @@
<url><loc>https://writing.natwelch.com/tag/recursecenter</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/ruby</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/satellite</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/season_6_</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/sec</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/security</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
<url><loc>https://writing.natwelch.com/tag/shrugs</loc><changefreq>monthly</changefreq><priority>0.7</priority></url>
Expand Down
6 changes: 1 addition & 5 deletions src/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,7 @@ class Logo extends React.Component<LogoProps> {
render() {
const { size } = this.props

return (
<div style={{ width: `${size}px`, height: `${size}px` }} {...this.props}>
{buildSVG(size)}
</div>
)
return <div {...this.props}>{buildSVG(size)}</div>
}
}

Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config: Config = {
},
dark: {
// eslint-disable-next-line @typescript-eslint/no-var-requires
...require("daisyui/src/theming/themes")["night"],
...require("daisyui/src/theming/themes")["dracula"],
},
},
],
Expand Down

0 comments on commit a10f5bf

Please sign in to comment.