Fix incorrect attribute in Navbar component SVG
Remove extraneous single character attribute 'f' from the SVG rect element in the Navbar component of astro file. This correction ensures that the SVG renders correctly, maintaining the desired appearance of the Navbar.
This commit is contained in:
parent
f8924c1c8b
commit
9eaa6e209e
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ import ThemeIcon from "../components/ThemeIcon.astro";
|
||||||
>
|
>
|
||||||
<!-- Brand Logo -->
|
<!-- Brand Logo -->
|
||||||
<svg class="h-auto w-24" viewBox="0 0 521 226" fill="none">
|
<svg class="h-auto w-24" viewBox="0 0 521 226" fill="none">
|
||||||
<rect width="78.937" height="18.485" x="269" y="154.911" f class="fill-current text-yellow-500 dark:text-yellow-400"
|
<rect width="78.937" height="18.485" x="269" y="154.911" class="fill-current text-yellow-500 dark:text-yellow-400"
|
||||||
fill="currentColor" rx="9.242" transform="rotate(-43.075 269 154.911)"/>
|
fill="currentColor" rx="9.242" transform="rotate(-43.075 269 154.911)"/>
|
||||||
<rect width="78.937" height="18.485" x="319" y="154.911" class="fill-current text-yellow-500 dark:text-yellow-400"
|
<rect width="78.937" height="18.485" x="319" y="154.911" class="fill-current text-yellow-500 dark:text-yellow-400"
|
||||||
fill="currentColor" rx="9.242" transform="rotate(-43.075 319 154.911)"/>
|
fill="currentColor" rx="9.242" transform="rotate(-43.075 319 154.911)"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue