Adjust StatusBar height

This commit is contained in:
Dustin Brett
2022-10-21 21:36:23 -07:00
parent 85477209f1
commit e87c3be2db
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import styled from "styled-components";
const StyledNavigation = styled.nav`
background-color: rgb(25, 25, 25);
display: flex;
height: 43px;
height: ${({ theme }) => theme.sizes.fileExplorer.navBarHeight};
button {
height: 16px;

View File

@@ -15,7 +15,7 @@ const sizes = {
renameWidth: 75,
},
fileExplorer: {
navBarHeight: "42px",
navBarHeight: "43px",
statusBarHeight: "23px",
},
fileManager: {