Skip to content

Commit

Permalink
Padding improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiollende committed Apr 27, 2024
1 parent 9abfc1d commit ab9b6bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/stats/Statistics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Statistics () {
<Avatar.Fallback className="AvatarFallback" style={{fontSize:'2em'}}>{username.toUpperCase().charAt(0)}{username.toUpperCase().charAt(1)}</Avatar.Fallback>
</Avatar.Root>
</div>
<h1 className="h1-statistics" style={{ marginTop: '0.5em', marginBottom:'0.1em', fontSize:'3.5em'}}>{username}</h1>
<h1 className="h1-statistics" style={{ marginTop: '0.5em', marginBottom:'0.1em', fontSize:'3.1em'}}>{username}</h1>
<h1 className="h2-statistics" >{email}</h1>
</div>
<StatsTable />
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/components/stats/StatsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export default function StatsTable() {
<table className="stats-table text-text text-4xl" data-testid="stats-table">
<thead>
<tr className="header">
<th className="statistics" style={{ padding: '10px' , fontSize:'1.5em' }}>Statistics</th>
<th className="value" style={{ padding: '10px', fontSize:'1.5em'}}>Value</th>
<th className="statistics" style={{ padding: '5px' , fontSize:'1.5em' }}>Statistics</th>
<th className="value" style={{ padding: '5px', fontSize:'1.5em'}}>Value</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit ab9b6bf

Please sign in to comment.