Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxian521 committed Jan 6, 2024
1 parent 5d43e0e commit 05afab0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/style/dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ html.dark {
}

.el-backtop {
--el-backtop-bg-color: var(--el-color-primary-light-9);
--el-backtop-bg-color: rgb(72 72 78);
--el-backtop-hover-bg-color: var(--el-color-primary);

transition: background-color 0.25s cubic-bezier(0.7, 0.3, 0.1, 1);
}

.el-dropdown-menu__item:not(.is-disabled):hover {
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions src/views/welcome/components/chart/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { default as barChart } from "./bar.vue";
export { default as lineChart } from "./line.vue";
export { default as roundChart } from "./round.vue";
File renamed without changes.
File renamed without changes.
4 changes: 1 addition & 3 deletions src/views/welcome/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
import { ref } from "vue";
import ReCol from "@/components/ReCol";
import { useResizeObserver } from "@vueuse/core";
import barChart from "./components/barChart.vue";
import lineChart from "./components/lineChart.vue";
import roundChart from "./components/roundChart.vue";
import PureTable from "./components/table/index.vue";
import { useDark, debounce } from "@pureadmin/utils";
import { ReNormalCountTo } from "@/components/ReCountTo";
import { chartData, barChartData, progressData } from "./data";
import { barChart, lineChart, roundChart } from "./components/chart";
import Segmented, { type OptionsType } from "@/components/ReSegmented";
defineOptions({
Expand Down

0 comments on commit 05afab0

Please sign in to comment.