Compare commits

..

1 Commits

Author SHA1 Message Date
Daniel
203d640dbd fix: workbook height 2025-12-16 21:37:04 +01:00
5 changed files with 418 additions and 427 deletions

830
docs/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,8 +5,8 @@
"preview": "vitepress preview src" "preview": "vitepress preview src"
}, },
"devDependencies": { "devDependencies": {
"markdown-it-mathjax3": "^4", "markdown-it-mathjax3": "^4.3.2",
"vitepress": "^v2.0.0-alpha.15", "vitepress": "^v2.0.0-alpha.12",
"vue": "^3.5.25" "vue": "^3.5.17"
} }
} }

View File

@@ -2050,10 +2050,10 @@ export default defineConfig({
}, },
lastUpdated: { lastUpdated: {
text: "Updated on", text: "Updated at",
formatOptions: { formatOptions: {
dateStyle: "medium", dateStyle: "full",
timeStyle: "short", timeStyle: "medium",
}, },
}, },

View File

@@ -143,6 +143,7 @@ const Container = styled("div")`
background: ${(properties): string => background: ${(properties): string =>
properties.theme.palette.background.default}; properties.theme.palette.background.default};
height: ${FORMULA_BAR_HEIGHT}px; height: ${FORMULA_BAR_HEIGHT}px;
border-top: 1px solid ${theme.palette.grey["300"]};
`; `;
const AddressContainer = styled("div")<{ $active?: boolean }>` const AddressContainer = styled("div")<{ $active?: boolean }>`

View File

@@ -763,7 +763,7 @@ type WorksheetAreaLeftProps = { $drawerWidth: number };
const WorksheetAreaLeft = styled("div")<WorksheetAreaLeftProps>( const WorksheetAreaLeft = styled("div")<WorksheetAreaLeftProps>(
({ $drawerWidth }) => ({ ({ $drawerWidth }) => ({
position: "absolute", position: "absolute",
top: `${TOOLBAR_HEIGHT + 1}px`, top: `${TOOLBAR_HEIGHT}px`,
width: `calc(100% - ${$drawerWidth}px)`, width: `calc(100% - ${$drawerWidth}px)`,
height: `calc(100% - ${TOOLBAR_HEIGHT}px)`, height: `calc(100% - ${TOOLBAR_HEIGHT}px)`,
}), }),