Skip to content

Commit a670265

Browse files
committed
modify :style
1 parent 4714793 commit a670265

File tree

68 files changed

+1482
-1942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1482
-1942
lines changed

src/.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/components/shared/BaseBreadcrumb.vue

Lines changed: 0 additions & 40 deletions
This file was deleted.

src/components/shared/ComponentTitle.vue

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/components/shared/UiParentCard.vue

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/components/shared/UiTitleCard.vue

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/layouts/admin/AdminLayout.vue

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@ import FooterPanel from './footer/FooterPanel.vue';
77
</script>
88

99
<template>
10-
<v-locale-provider>
11-
<v-app :class="[]">
12-
<VerticalSidebarVue />
13-
<VerticalHeaderVue />
10+
<v-locale-provider>
11+
<v-app>
12+
<VerticalSidebarVue />
13+
<VerticalHeaderVue />
1414

15-
<v-main class="page-wrapper">
16-
<v-container>
17-
<div>
18-
<!-- Loader start -->
19-
<LoaderWrapper />
20-
<!-- Loader end -->
21-
<RouterView />
22-
</div>
23-
</v-container>
24-
<v-container class="pt-0">
25-
<div>
26-
<FooterPanel />
27-
</div>
28-
</v-container>
29-
</v-main>
30-
</v-app>
31-
</v-locale-provider>
15+
<v-main class="page-wrapper">
16+
<v-container>
17+
<div>
18+
<!-- Loader start -->
19+
<LoaderWrapper />
20+
<!-- Loader end -->
21+
<RouterView />
22+
</div>
23+
</v-container>
24+
<v-container class="pt-0">
25+
<div>
26+
<FooterPanel />
27+
</div>
28+
</v-container>
29+
</v-main>
30+
</v-app>
31+
</v-locale-provider>
3232
</template>
Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
<script setup lang="ts">
22
const scrollTop = () => {
3-
window.scrollTo({ top: 0, behavior: 'smooth' });
3+
window.scrollTo({ top: 0, behavior: 'smooth' });
44
};
55
</script>
66
<template>
7-
<v-footer class="px-0 pb-10 footer">
8-
<v-row justify="center" align="center" no-gutters>
9-
<v-col cols="6">
10-
<p class="text-h5 mb-0" :style="{ color: 'rgb(var(--v-theme-lightText))' }">Web Geppo &copy; 2024 greenways inc.</p>
11-
</v-col>
12-
<v-col class="text-right" cols="6">
13-
<v-btn icon color="main" rounded="md" @click="scrollTop">
14-
<v-icon icon="mdi-chevron-up" size="x-large"></v-icon>
15-
</v-btn>
16-
</v-col>
17-
</v-row>
18-
</v-footer>
7+
<v-footer class="px-0 pb-10 footer">
8+
<v-row justify="center" align="center" no-gutters>
9+
<v-col cols="6">
10+
<p class="text-h5 mb-0 ligthText-color">Web Geppo &copy; 2024 greenways inc.</p>
11+
</v-col>
12+
<v-col class="text-right" cols="6">
13+
<v-btn icon color="main" rounded="md" @click="scrollTop">
14+
<v-icon icon="mdi-chevron-up" size="x-large"></v-icon>
15+
</v-btn>
16+
</v-col>
17+
</v-row>
18+
</v-footer>
1919
</template>
20+
21+
<style scoped></style>
Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
11
<script setup lang="ts">
2-
// import { ref } from 'vue';
3-
// icons
4-
// import { CheckCircleOutlined, GiftOutlined, MessageOutlined, SettingOutlined, BellOutlined } from '@ant-design/icons-vue';
52
import { router } from '@/router';
63
import { useCustomizerStore } from '@/stores/customizer';
74
85
const customizer = useCustomizerStore();
96
10-
// const isActive = ref(true);
11-
12-
// function deactivateItem() {
13-
// isActive.value = false;
14-
// }
15-
167
const openNotice = () => {
178
customizer.SET_TITLE('お知らせ');
189
router.push('/notice');
@@ -26,20 +17,20 @@ const openNotice = () => {
2617
<v-menu :close-on-content-click="false" offset="6, 0">
2718
<template v-slot:activator="{ props }">
2819
<v-btn class="text-secondary ml-sm-2 ml-1" icon color="error" rounded="sm" size="large" v-bind="props" @click="openNotice">
29-
<!-- <v-badge :content="isActive ? '2' : '0'" color="error" offset-x="-4" offset-y="-5">
30-
<BellOutlined :style="{ fontSize: '16px' }" />
31-
</v-badge> -->
3220
<v-icon>mdi-bell-badge</v-icon>
3321
</v-btn>
34-
<div class="pr-3" :style="{ color: 'rgb(var(--v-theme-error))' }">お知らせあり</div>
22+
<div class="pr-3 notice-text">お知らせあり</div>
3523
</template>
3624
</v-menu>
3725
</template>
3826

39-
<style lang="scss">
27+
<style lang="scss" scoped>
4028
.v-tooltip {
4129
> .v-overlay__content.custom-tooltip {
4230
padding: 2px 6px;
4331
}
4432
}
33+
.notice-text {
34+
color: rgb(var(--v-theme-error));
35+
}
4536
</style>

src/layouts/admin/vertical-header/ProfileDD.vue

Lines changed: 0 additions & 136 deletions
This file was deleted.

0 commit comments

Comments
 (0)