diff --git a/.moon/hooks/pre-commit.sh b/.moon/hooks/pre-commit.sh index e69504f..6567ba0 100755 --- a/.moon/hooks/pre-commit.sh +++ b/.moon/hooks/pre-commit.sh @@ -6,4 +6,5 @@ set -eo pipefail moon :format-fix --affected moon :lint-fix --affected +git add -u diff --git a/.moon/workspace.yml b/.moon/workspace.yml index 8469836..3b265d3 100644 --- a/.moon/workspace.yml +++ b/.moon/workspace.yml @@ -30,5 +30,6 @@ vcs: pre-commit: - 'moon :format-fix --affected' - 'moon :lint-fix --affected' + - 'git add -u' manager: git syncHooks: true diff --git a/eslint.config.js b/eslint.config.js index 04e056f..a5d00ff 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -79,6 +79,7 @@ export default [ 'yml/sort-sequence-values': ['error', { order: { type: 'asc' }, pathPattern: '^dependsOn$' }], 'yml/no-empty-sequence-entry': ['error'], 'tailwindcss/no-custom-classname': 'off', + 'tailwindcss/classnames-order': 'off', }, }, ]; diff --git a/libs/ui-components/hero/LychenHero.vue b/libs/ui-components/hero/LychenHero.vue index c19ab23..a08c1a7 100644 --- a/libs/ui-components/hero/LychenHero.vue +++ b/libs/ui-components/hero/LychenHero.vue @@ -8,7 +8,7 @@ v-if="overlay" :class="cn('absolute top-0 left-0 size-full', overlayClass)" > -
+
diff --git a/libs/ui-components/logo/LychenLogo.vue b/libs/ui-components/logo/LychenLogo.vue index 9e4cbc0..9c0459b 100644 --- a/libs/ui-components/logo/LychenLogo.vue +++ b/libs/ui-components/logo/LychenLogo.vue @@ -1,15 +1,15 @@ diff --git a/libs/ui-components/navigation-menu/LychenNavigationMenuViewport.vue b/libs/ui-components/navigation-menu/LychenNavigationMenuViewport.vue index 5968887..52e402b 100644 --- a/libs/ui-components/navigation-menu/LychenNavigationMenuViewport.vue +++ b/libs/ui-components/navigation-menu/LychenNavigationMenuViewport.vue @@ -20,12 +20,12 @@ const forwardedProps = useForwardProps(delegatedProps); + + + + diff --git a/libs/ui-css/components/scroll.css b/libs/ui-css/components/scroll.css index 6e9291f..43fbc1f 100644 --- a/libs/ui-css/components/scroll.css +++ b/libs/ui-css/components/scroll.css @@ -3,11 +3,12 @@ } *::-webkit-scrollbar-track { - background: rgb(var(--color-surface)); /* color of the tracking area */ + background: rgb(var(--color-surface-container)); /* color of the tracking area */ } *::-webkit-scrollbar-thumb { - background-color: rgb(var(--color-primary) / 0.4); /* color of the scroll thumb */ + background-color: rgb(var(--color-on-surface-container) / 0.4); /* color of the scroll thumb */ border-radius: 20px; /* roundness of the scroll thumb */ - border: 4px solid rgb(var(--color-surface)); + border: 4px solid rgb(var(--color-surface-container)); + cursor: move; } diff --git a/libs/ui-layouts/website/LayoutWebsiteNavigation.vue b/libs/ui-layouts/website/LayoutWebsiteNavigation.vue index fca45cb..f16fffd 100644 --- a/libs/ui-layouts/website/LayoutWebsiteNavigation.vue +++ b/libs/ui-layouts/website/LayoutWebsiteNavigation.vue @@ -1,7 +1,7 @@