refactor(ui): adjust global navigation bar style (#13419)

### What problem does this PR solve?

Renovate global navigation bar, align styles to the design.
(May causes minor layout issues in sub-pages, will check and fix soon)

### Type of change

- [x] Refactoring
This commit is contained in:
Jimmy Ben Klieve
2026-03-05 20:47:29 +08:00
committed by GitHub
parent 9e0e128ce5
commit ef4cbe72a3
45 changed files with 1334 additions and 1250 deletions

View File

@@ -1,28 +1,26 @@
@import url(./inter.less);
html {
height: 100%;
overflow: hidden; // The content of the DatasetSettings page is too high, which will cause scroll bars to appear on the html tags. Setting the maximum height in DatasetSettings does not work either. I don't understand.
:root {
--font-sans: 'Inter';
}
body {
font-family:
'Inter',
system-ui,
-apple-system,
'Segoe UI',
sans-serif;
margin: 0;
height: 100%;
@supports (font-variation-settings: normal) {
:root {
--font-sans: 'InterVariable';
}
}
html,
body,
#root {
height: 100%;
}
width: 100vw;
width: 100dvw;
height: 100vh;
height: 100dvh;
overflow: hidden;
.ant-app {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.vue-office-excel {