aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/locationBar
diff options
context:
space:
mode:
Diffstat (limited to 'packages/renderer/src/components/locationBar')
-rw-r--r--packages/renderer/src/components/locationBar/GoButton.tsx1
-rw-r--r--packages/renderer/src/components/locationBar/LocationBar.tsx2
2 files changed, 1 insertions, 2 deletions
diff --git a/packages/renderer/src/components/locationBar/GoButton.tsx b/packages/renderer/src/components/locationBar/GoButton.tsx
index 32f715e..471f25e 100644
--- a/packages/renderer/src/components/locationBar/GoButton.tsx
+++ b/packages/renderer/src/components/locationBar/GoButton.tsx
@@ -38,6 +38,7 @@ export default function GoButton({
38 color="inherit" 38 color="inherit"
39 onClick={onClick} 39 onClick={onClick}
40 sx={{ 40 sx={{
41 color: 'text.primary',
41 minWidth: '32px', 42 minWidth: '32px',
42 height: '32px', 43 height: '32px',
43 paddingX: '6px', 44 paddingX: '6px',
diff --git a/packages/renderer/src/components/locationBar/LocationBar.tsx b/packages/renderer/src/components/locationBar/LocationBar.tsx
index 8b079f0..0debaab 100644
--- a/packages/renderer/src/components/locationBar/LocationBar.tsx
+++ b/packages/renderer/src/components/locationBar/LocationBar.tsx
@@ -36,8 +36,6 @@ const LocationBarRoot = styled('header', {
36 display: hidden ? 'none' : 'flex', 36 display: hidden ? 'none' : 'flex',
37 flexDirection: 'row', 37 flexDirection: 'row',
38 padding: theme.spacing(1), 38 padding: theme.spacing(1),
39 // Align the bottom border with the service switcher in the sidebar.
40 paddingBottom: `calc(${theme.spacing(1)} - 1px)`,
41 gap: theme.spacing(1), 39 gap: theme.spacing(1),
42 borderBottom: `1px solid ${theme.palette.divider}`, 40 borderBottom: `1px solid ${theme.palette.divider}`,
43})); 41}));