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

@@ -4,6 +4,7 @@ import { ChevronDown } from "lucide-react";
import { Fx } from "../icons";
import Editor from "./editor/editor";
import type { WorkbookState } from "./workbookState";
import { FORMULA_BAR_HEIGH } from "./constants";
type FormulaBarProps = {
cellAddress: string;
@@ -14,7 +15,6 @@ type FormulaBarProps = {
onTextUpdated: () => void;
};
const formulaBarHeight = 30;
const headerColumnWidth = 35;
function FormulaBar(properties: FormulaBarProps) {
@@ -117,7 +117,7 @@ const Container = styled("div")`
align-items: center;
background: ${(properties): string =>
properties.theme.palette.background.default};
height: ${formulaBarHeight}px;
height: ${FORMULA_BAR_HEIGH}px;
`;
const AddressContainer = styled("div")`