Skip to content

Commit d039321

Browse files
committed
nits
1 parent 1a09a75 commit d039321

File tree

4 files changed

+29
-9
lines changed

4 files changed

+29
-9
lines changed

public/banner.png

546 KB
Loading

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ export function App() {
271271
return (
272272
<div className="wrapper">
273273
<div className="container">
274-
<h1 className="title">Foundry</h1>
274+
<img className="banner" src="banner.png" alt="Foundry Browser Wallet" />
275275

276276
{providers.length > 1 && (
277-
<div>
277+
<div className="wallet-selector">
278278
<label>
279279
<select
280280
value={selectedUuid ?? ""}

src/styles/App.css

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,37 @@
1+
.wrapper {
2+
display: flex;
3+
flex-direction: column;
4+
align-items: center;
5+
justify-content: center;
6+
min-height: 100vh;
7+
padding: 24px;
8+
}
9+
110
.container {
11+
display: flex;
12+
flex-direction: column;
13+
align-items: flex-start;
214
background-color: #3b3b3b;
315
padding: 16px;
416
max-width: 600px;
517
border-radius: 8px;
618
}
719

8-
.wrapper {
20+
/* .header {
921
display: flex;
1022
flex-direction: column;
1123
align-items: center;
12-
justify-content: center;
13-
min-height: 100vh;
24+
margin-bottom: 24px;
25+
} */
26+
27+
.banner {
28+
width: 600px;
29+
border-radius: 8px;
30+
height: auto;
31+
}
32+
33+
.wallet-selector {
34+
margin-top: 16px;
1435
}
1536

1637
.title {
@@ -29,6 +50,6 @@
2950
font-size: 13px;
3051
margin-bottom: 16px;
3152
border: 1px solid #e1e4e8;
32-
border-radius: 6px;
53+
border-radius: 8px;
3354
padding: 8px 12px;
3455
}

src/styles/global.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ body,
33
#root {
44
width: 100%;
55
height: 100%;
6-
overflow: hidden;
76
font-family:
87
system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
98
sans-serif;
@@ -25,8 +24,8 @@ button:hover {
2524
}
2625

2726
select {
28-
padding: 4px;
29-
border-radius: 4px;
27+
padding: 8px;
28+
border-radius: 8px;
3029
border: 1px solid #e1e4e8;
3130
background-color: #1e2026;
3231
color: #f8f8f8;

0 commit comments

Comments
 (0)