Skip to content

Commit

Permalink
fix: correct values for grid strip
Browse files Browse the repository at this point in the history
  • Loading branch information
kepi committed Jul 4, 2024
1 parent 9879c3a commit 55d8943
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Eye Dropper",
"private": true,
"version": "1.3.5.0",
"version": "1.3.6.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Popup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import ManualInput from "../lib/ManualInput.svelte"
import { popupDialog } from "../store"
$: value = `linear-gradient(to right, {$selectedColor} 0%, {$newColor} 100%)`
$: value = `linear-gradient(to right, ${$selectedColor} 0%, ${$newColor} 100%)`
const copy = () => {
copyToClipboard(value)
Expand All @@ -29,7 +29,7 @@
}
</script>

<div class="container max-w-[464px] relative m-auto">
<div class="container min-w-[464px] max-w-[600px] relative m-auto">
<div class="flex flex-nowrap p-1 gap-2">
<div class="flex-grow w-full">
<div class="pt-2 flex gap-2 items-center">
Expand Down

0 comments on commit 55d8943

Please sign in to comment.