Skip to content

Commit 9103300

Browse files
b0aseclaude
andcommitted
Fix redundant Bitcoin text and reduce header padding
- Removed redundant "Bitcoin" text from mobile and desktop headers - Now shows Bitcoin icon + "Spreadsheet" instead of "Bitcoin Spreadsheet" - Reduced App-header padding from 24px to 12px for better spacing - Fixes artifact where "Bitcoin" appeared twice in the title 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a66ffa3 commit 9103300

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

frontend/src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ body {
7878
background: rgba(255, 255, 255, 0.95);
7979
backdrop-filter: blur(20px);
8080
color: #1976d2;
81-
padding: 24px 32px;
81+
padding: 12px 32px;
8282
border-bottom: 1px solid rgba(25, 118, 210, 0.1);
8383
position: relative;
8484
box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);

frontend/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ function App() {
277277
className="bitcoin-icon-beveled"
278278
style={{ width: '40px', height: '40px', marginRight: '16px', verticalAlign: 'middle' }}
279279
/>
280-
<span className="bitcoin-orange">Bitcoin</span> Spreadsheet
280+
Spreadsheet
281281
</h1>
282282
</div>
283283
<div className="mobile-header-connections">
@@ -361,7 +361,7 @@ function App() {
361361
className="bitcoin-icon-beveled"
362362
style={{ width: '40px', height: '40px', marginRight: '16px', verticalAlign: 'middle' }}
363363
/>
364-
<span className="bitcoin-orange">Bitcoin</span> Spreadsheet
364+
Spreadsheet
365365
</h1>
366366
<p className="app-subtitle">Secure, encrypted spreadsheets on the blockchain</p>
367367
</div>

src/App.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ body {
7878
background: rgba(255, 255, 255, 0.95);
7979
backdrop-filter: blur(20px);
8080
color: #1976d2;
81-
padding: 24px 32px;
81+
padding: 12px 32px;
8282
border-bottom: 1px solid rgba(25, 118, 210, 0.1);
8383
position: relative;
8484
box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ function App() {
277277
className="bitcoin-icon-beveled"
278278
style={{ width: '40px', height: '40px', marginRight: '16px', verticalAlign: 'middle' }}
279279
/>
280-
<span className="bitcoin-orange">Bitcoin</span> Spreadsheet
280+
Spreadsheet
281281
</h1>
282282
</div>
283283
<div className="mobile-header-connections">
@@ -361,7 +361,7 @@ function App() {
361361
className="bitcoin-icon-beveled"
362362
style={{ width: '40px', height: '40px', marginRight: '16px', verticalAlign: 'middle' }}
363363
/>
364-
<span className="bitcoin-orange">Bitcoin</span> Spreadsheet
364+
Spreadsheet
365365
</h1>
366366
<p className="app-subtitle">Secure, encrypted spreadsheets on the blockchain</p>
367367
</div>

0 commit comments

Comments
 (0)