Fix tab title

This commit is contained in:
Mikkel Svartveit 2023-10-17 23:42:50 -07:00
parent 2ed83cf75b
commit 0733f87517
2 changed files with 1 additions and 10 deletions

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; background: none; display: block; shape-rendering: auto;" width="128px" height="128px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
<circle cx="50" cy="50" r="32" stroke-width="5" stroke="#fef08a" stroke-dasharray="50.26548245743669 50.26548245743669" fill="none" stroke-linecap="round">
<animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform>
</circle>
<circle cx="50" cy="50" r="26" stroke-width="5" stroke="#e2e8f0" stroke-dasharray="40.840704496667314 40.840704496667314" stroke-dashoffset="40.840704496667314" fill="none" stroke-linecap="round">
<animateTransform attributeName="transform" type="rotate" dur="1s" repeatCount="indefinite" keyTimes="0;1" values="0 50 50;-360 50 50"></animateTransform>
</circle>
</svg>

Before

Width:  |  Height:  |  Size: 976 B

View file

@ -8,7 +8,7 @@ interface Props {
const { title, hideScrollbar } = Astro.props; const { title, hideScrollbar } = Astro.props;
const fullTitle = `${title && title + " "}Mikkel Svartveit`; const fullTitle = `${title ? title + " " : ""}Mikkel Svartveit`;
--- ---
<!doctype html> <!doctype html>