Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-stone committed Oct 22, 2024
1 parent 729d340 commit 4def210
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flowtide",
"private": true,
"version": "0.0.0",
"version": "1.7",
"type": "module",
"scripts": {
"build": "vite build",
Expand Down
2 changes: 1 addition & 1 deletion src/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Flowtide - Beautiful New Tab",
"version": "1.6",
"version": "1.7",
"description": "Flowtide is a beautiful new tab page for your browser.",
"chrome_url_overrides": {
"newtab": "index.html"
Expand Down
6 changes: 4 additions & 2 deletions src/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,13 @@ function App() {
return (
<div
className={cn(
"flex flex-col items-center justify-center h-screen bg-white dark:bg-black text-black dark:text-white bg-cover font-sans",
"flex flex-col items-center justify-center h-screen bg-white dark:bg-black text-black dark:text-white bg-cover font-sans transition-background-image",
font === "serif" && "font-serif",
font === "monospace" && "font-mono"
)}
style={{ backgroundImage: `url(${selectedImage.url})` }}
style={{
backgroundImage: `url(${selectedImage.url})`,
}}
id="app"
>
<CommandPalette setSelectedPage={setSelectedPage} />
Expand Down

0 comments on commit 4def210

Please sign in to comment.