Skip to content

Commit

Permalink
Fix some padding for Apps, Files, Jobs, Systems
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia committed Jul 23, 2024
1 parent 03242aa commit 38351c2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/app/Apps/_Router/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ const Router: React.FC = () => {
return (
<Switch>
<Route path={`${path}`} exact>
<div style={{ margin: '1rem', flex: 1, overflow: 'auto' }}>


<SectionMessage type="info">
Select an app from the list.
</SectionMessage>
</div>
</Route>

<Route
Expand Down
6 changes: 4 additions & 2 deletions src/app/Files/_Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ const Layout: React.FC = () => {
const crumbs = breadcrumbsFromPathname(pathname).splice(1);
const header = (
<LayoutHeader>
<div className={styles.breadcrumbs}>
Files
{/* <div className={styles.breadcrumbs}>
<Breadcrumbs breadcrumbs={[{ text: 'Files' }, ...crumbs]} />
</div>
</div> */}
<Toolbar />
</LayoutHeader>
);
Expand Down
3 changes: 3 additions & 0 deletions src/app/Files/_Router/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ const Router: React.FC = () => {
return (
<Switch>
<Route path={`${path}`} exact>
<div style={{ margin: '1rem', flex: 1, overflow: 'auto' }}>

<SectionMessage type="info">
Select a system from the list.
</SectionMessage>
</div>
</Route>

<Route
Expand Down
3 changes: 3 additions & 0 deletions src/app/Jobs/_Router/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ const Router: React.FC = () => {
return (
<Switch>
<Route path={`${path}`} exact>
<div style={{ margin: '1rem', flex: 1, overflow: 'auto' }}>

<SectionMessage type="info">Select a job from the list.</SectionMessage>
</div>
</Route>

<Route
Expand Down
3 changes: 3 additions & 0 deletions src/app/Systems/_Router/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ const Router: React.FC = () => {
return (
<Switch>
<Route path={`${path}`} exact>
<div style={{ margin: '1rem', flex: 1, overflow: 'auto' }}>

<SectionMessage type="info">
Select a system from the list.
</SectionMessage>
</div>
</Route>

<Route
Expand Down

0 comments on commit 38351c2

Please sign in to comment.