Skip to content

Commit 7a81354

Browse files
committed
add notice
1 parent 05f3782 commit 7a81354

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ export function App() {
238238
return (
239239
<div className="wrapper">
240240
<div className="container">
241+
<div className="notice">Browser wallet is still in early development. Use with caution!</div>
242+
241243
<img className="banner" src="banner.png" alt="Foundry Browser Wallet" />
242244

243245
{providers.length > 1 && (

src/styles/App.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,18 @@
1717
border-radius: 8px;
1818
}
1919

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+
2032
.banner {
2133
width: 100%;
2234
height: auto;

0 commit comments

Comments
 (0)