Skip to content

Commit

Permalink
Dashboard adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoni7 committed Sep 23, 2024
1 parent eb68a19 commit 95bb2fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/routes/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ export const Dashboard: React.FC = () => {
sx={{ width: '100vw', height: '100vh', overflowY: 'auto', paddingTop: '120px' }}
>
<Grid item md={4} sx={{ marginTop: '1%' }}>
<Stack width="100%" spacing={1} rowGap={3} marginLeft={2}>
<Stack spacing={1} rowGap={6} marginLeft={1} alignItems="center">
<SubclassSelector
subclasses={subclasses}
selectedSubclass={selectedSubclass}
Expand All @@ -473,7 +473,7 @@ export const Dashboard: React.FC = () => {
<Grid item>
<ExoticSelector />
</Grid>
<Grid item height="22vh">
<Grid item height="20%">
<Filters />
</Grid>
<Grid item alignSelf="flex-start">
Expand Down
3 changes: 1 addition & 2 deletions src/features/armor-optimization/components/NumberBoxes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ const NumberBoxes: React.FC<NumberBoxesProps> = ({ maxReachableValues }) => {
return (
<Box
sx={{
paddingRight: 2,
paddingTop: 2,
padding: 1,
backgroundColor: 'rgba(0, 0, 0, 0.1)',
backdropFilter: 'blur(5px)',
width: '91%',
Expand Down
2 changes: 1 addition & 1 deletion src/features/subclass/components/SubclassSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const SubclassSelector: React.FC<SubclassSelectorProps> = ({
transform: x.to((x) => `translateX(${x * 40}px)`),
}}
>
<Stack direction="row" columnGap={4} justifyContent="flex-start" alignItems="center">
<Stack direction="row" columnGap={8} justifyContent="flex-start" alignItems="center">
{!isPrismaticActive && (
<Box className="diamond-grid">
{subclasses &&
Expand Down

0 comments on commit 95bb2fd

Please sign in to comment.