Compare commits

..

2 Commits

Author SHA1 Message Date
Nicolás Hatcher
b071b95a02 UPDATE: Uses shorter date and time on "Last updated"
Also typo "Updated at" => "Updated on"
2025-12-10 18:42:11 +01:00
Nicolás Hatcher
2383ce4d27 UPDATE: Updates docs dependencies 2025-12-10 18:40:45 +01:00
5 changed files with 427 additions and 418 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"
},
"devDependencies": {
"markdown-it-mathjax3": "^4.3.2",
"vitepress": "^v2.0.0-alpha.12",
"vue": "^3.5.17"
"markdown-it-mathjax3": "^4",
"vitepress": "^v2.0.0-alpha.15",
"vue": "^3.5.25"
}
}

View File

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

View File

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

View File

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