Skip to content

Commit 60154c6

Browse files
committed
Fix alignments of icons
1 parent 256daab commit 60154c6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/app/src/app/pages/Dashboard/Content/Sandboxes/Filters/SortOptions/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class SortOptionsComponent extends React.Component {
7373
transform: `rotate(${order === 'asc' ? -180 : 0}deg)`,
7474
fontSize: '.875rem',
7575
marginLeft: 4,
76+
marginBottom: 2,
7677
}}
7778
/>
7879
</Container>

packages/app/src/app/pages/common/Navigation/elements.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export const Action = styled.div<{ noHover?: boolean }>`
4040
opacity: 0.8;
4141
background: transparent;
4242
border: none;
43+
padding: 0;
4344
4445
${props =>
4546
props.noHover

packages/app/src/app/pages/common/Navigation/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const Navigation = inject('store', 'signals')(
8181
<Action>
8282
<Tooltip placement="bottom" content="Explore Sandboxes">
8383
<a style={{ color: 'white' }} href={exploreUrl()}>
84-
<FlameIcon />
84+
<FlameIcon height={35} />
8585
</a>
8686
</Tooltip>
8787
</Action>

0 commit comments

Comments
 (0)