Skip to content

Commit 4843382

Browse files
committed
Add favicon + fix orb effect for firefox
1 parent 3c4f842 commit 4843382

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

dist/images/favicon.png

45.4 KB
Loading

dist/index.html

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
<link rel="stylesheet" href="./bundle/index.css" />
99

10+
<link
11+
rel="shortcut icon"
12+
href="./images/favicon.png"
13+
type="image/png"
14+
/>
15+
1016
<script src="./bundle/index.js" async defer></script>
1117
</head>
1218
<body>

src/index.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ button {
7575
height: 100%;
7676
z-index: -1;
7777
overflow: hidden;
78+
opacity: 0.15;
7879
}
7980

8081
.orb {
@@ -85,7 +86,7 @@ button {
8586
border-radius: 100%;
8687
background-color: var(--orb-color, crimson);
8788

88-
filter: opacity(0.25) blur(20em);
89+
filter: blur(20em);
8990
}
9091

9192
.orb-red {

0 commit comments

Comments
 (0)