We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05f3782 commit 7a81354Copy full SHA for 7a81354
src/App.tsx
@@ -238,6 +238,8 @@ export function App() {
238
return (
239
<div className="wrapper">
240
<div className="container">
241
+ <div className="notice">Browser wallet is still in early development. Use with caution!</div>
242
+
243
<img className="banner" src="banner.png" alt="Foundry Browser Wallet" />
244
245
{providers.length > 1 && (
src/styles/App.css
@@ -17,6 +17,18 @@
17
border-radius: 8px;
18
}
19
20
+.notice {
21
+ width: 100%;
22
+ background-color: #ffcc00;
23
+ color: #333;
24
+ text-align: center;
25
+ padding: 8px;
26
+ border-radius: 8px;
27
+ margin-bottom: 16px;
28
+ font-weight: bold;
29
+ font-size: 13px;
30
+}
31
32
.banner {
33
width: 100%;
34
height: auto;
0 commit comments