FIX: Correct height of toolbar (48) and formula bar (40)

This commit is contained in:
Nicolás Hatcher
2024-10-08 20:17:40 +02:00
committed by Nicolás Hatcher Andrés
parent e41741cf77
commit 6390739fd4
4 changed files with 10 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ import type { WorkbookState } from "../workbookState";
import SheetListMenu from "./menus";
import Sheet from "./sheet";
import type { SheetOptions } from "./types";
import { NAVIGATION_HEIGH } from "../constants";
export interface NavigationProps {
sheets: SheetOptions[];
@@ -109,7 +110,7 @@ const Container = styled("div")`
left: 0px;
right: 0px;
display: flex;
height: 40px;
height: ${NAVIGATION_HEIGH}px;
align-items: center;
padding-left: 12px;
font-family: Inter;