Skip to content

Commit

Permalink
Remove unnecessary padding and labels in side menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Marilyth committed May 25, 2024
1 parent fc49c39 commit 7b86135
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 15 deletions.
6 changes: 3 additions & 3 deletions docs/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"files": {
"main.css": "/static/css/main.b89afb12.css",
"main.js": "/static/js/main.4bf6224c.js",
"main.js": "/static/js/main.fc9b9f93.js",
"static/js/787.71e672d5.chunk.js": "/static/js/787.71e672d5.chunk.js",
"index.html": "/index.html",
"main.b89afb12.css.map": "/static/css/main.b89afb12.css.map",
"main.4bf6224c.js.map": "/static/js/main.4bf6224c.js.map",
"main.fc9b9f93.js.map": "/static/js/main.fc9b9f93.js.map",
"787.71e672d5.chunk.js.map": "/static/js/787.71e672d5.chunk.js.map"
},
"entrypoints": [
"static/css/main.b89afb12.css",
"static/js/main.4bf6224c.js"
"static/js/main.fc9b9f93.js"
]
}
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/logo.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Website for tracking Tibia market prices."/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Tibia Market Tracker</title><script defer="defer" src="/static/js/main.4bf6224c.js"></script><link href="/static/css/main.b89afb12.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/logo.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Website for tracking Tibia market prices."/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Tibia Market Tracker</title><script defer="defer" src="/static/js/main.fc9b9f93.js"></script><link href="/static/css/main.b89afb12.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
3 changes: 0 additions & 3 deletions docs/static/js/main.4bf6224c.js

This file was deleted.

3 changes: 3 additions & 0 deletions docs/static/js/main.fc9b9f93.js

Large diffs are not rendered by default.

File renamed without changes.

Large diffs are not rendered by default.

10 changes: 3 additions & 7 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -557,15 +557,11 @@ const App: React.FC = () => {
borderRight: isLightMode ? '1px solid rgba(0,0,0,0.1)' : '1px solid rgba(255,255,255,0.1)',
}}
>
<div id='title' style={{borderBottom: isLightMode ? '1px solid rgba(0,0,0,0.1)' : '1px solid rgba(255,255,255,0.1)'}}>
<Title level={4} style={{textAlign:'center'}}>
<Title level={4} style={{textAlign:'center', marginTop: '0px'}}>
Market Tracker
</Title>
</div>
<Title level={5} style={{textAlign:'center', color:'grey'}}>
Filters
</Title>

<Divider>
</Divider>
<Form layout='vertical'>
<Form.Item label="World" required tooltip="The world for which the market values are fetched">
<Select options={marketServerOptions} defaultValue={marketServer} onChange={(value) => setMarketServer(value)}></Select>
Expand Down

0 comments on commit 7b86135

Please sign in to comment.