From 8339b2b4ea65598d238d7d2f297c727a3b7c7931 Mon Sep 17 00:00:00 2001 From: Ayo Date: Tue, 25 Jul 2023 22:41:49 +0200 Subject: [PATCH] feat: popover close icon --- src/components/AddressBar.astro | 82 +++++++++++++++++++--------- src/components/SettingsPopover.astro | 34 +++++++++++- 2 files changed, 86 insertions(+), 30 deletions(-) diff --git a/src/components/AddressBar.astro b/src/components/AddressBar.astro index 33126af..ab1cc90 100644 --- a/src/components/AddressBar.astro +++ b/src/components/AddressBar.astro @@ -1,67 +1,95 @@ --- -import Icon from 'astro-iconify'; -import SettingsPopover from './SettingsPopover.astro'; +import Icon from "astro-iconify"; +import SettingsPopover from "./SettingsPopover.astro"; export interface Props { url: string | null; } -const placeholder = 'Type the article URL here'; +const placeholder = "Type the article URL here"; const { url } = Astro.props; ---
- - - -
- +
+
- -