Feature: 创建项目 & 导航栏动画 & i18n国际化支持

This commit is contained in:
2025-07-05 15:46:25 +08:00
commit dab57fbadf
73 changed files with 7326 additions and 0 deletions

3
src/styles/README.md Normal file
View File

@ -0,0 +1,3 @@
# Styles
This directory is for configuring the styles of the application.

17
src/styles/custom.css Normal file
View File

@ -0,0 +1,17 @@
.app-bar-transition {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.app-bar-pill {
border-radius: 50px !important;
margin: 16px 16px;
width: calc(100% - 32px) !important;
transform: translateX(0);
}
.app-bar-rect {
border-radius: 0 !important;
margin: 0;
width: 100% !important;
transform: translateX(0);
}

10
src/styles/settings.scss Normal file
View File

@ -0,0 +1,10 @@
/**
* src/styles/settings.scss
*
* Configures SASS variables and Vuetify overwrites
*/
// https://vuetifyjs.com/features/sass-variables/`
// @use 'vuetify/settings' with (
// $color-pack: false
// );