-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* custom class remove, footer add, eslint any error solved and all packages updates * upgrade to pro card added in sidebar (#9) * Update package.json * Update VerticalSidebar.vue --------- Co-authored-by: CodedThemes <[email protected]>
- Loading branch information
1 parent
e70d727
commit fcd5071
Showing
23 changed files
with
1,943 additions
and
1,754 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<script setup lang="ts"> | ||
import { shallowRef } from 'vue'; | ||
const footerLink = shallowRef([ | ||
{ | ||
title: 'Home', | ||
url: 'https://berrydashboard.io/vue/free' | ||
}, | ||
{ | ||
title: 'Documentation', | ||
url: 'https://codedthemes.gitbook.io/berry-vuetify/' | ||
}, | ||
{ | ||
title: 'Support', | ||
url: 'https://codedthemes.support-hub.io/' | ||
} | ||
]); | ||
</script> | ||
<template> | ||
<v-footer class="px-0 footer mt-2"> | ||
<v-row justify="center" align="center" no-gutters> | ||
<v-col cols="12" sm="6"> | ||
<p class="text-body-1 mb-0 text-sm-left text-center"> | ||
Berry ♥ crafted by Team | ||
<a href="https://themeforest.net/user/codedthemes" class="text-darkText text-decoration-none" target="_blank">Codedthemes</a> | ||
</p> | ||
</v-col> | ||
<v-col class="text-sm-right text-center" cols="12" sm="6"> | ||
<a | ||
v-for="(item, i) in footerLink" | ||
:key="i" | ||
class="mx-2 text-body-1 text-darkText text-decoration-none" | ||
target="_blank" | ||
:href="item.url" | ||
> | ||
{{ item.title }} | ||
</a> | ||
</v-col> | ||
</v-row> | ||
</v-footer> | ||
</template> | ||
|
||
<style lang="scss"> | ||
.v-footer { | ||
position: unset; | ||
} | ||
footer { | ||
a { | ||
&:hover { | ||
color: rgb(var(--v-theme-primary)) !important; | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,10 @@ | ||
<script setup lang="ts"> | ||
import { ref } from 'vue'; | ||
const value = ref(80); | ||
const bufferValue = ref(20); | ||
</script> | ||
|
||
<template> | ||
<v-sheet rounded="md" color="lightprimary" class="pa-4 ExtraBox hide-menu"> | ||
<div class="d-flex align-center"> | ||
<v-btn variant="text" size="large" class="bg-surface" icon rounded="md" color="primary"> | ||
<TableIcon /> | ||
</v-btn> | ||
<div class="px-3"> | ||
<h5 class="text-h5 text-primary mb-0 line-height-none">Get Extra Space</h5> | ||
<small class="text-disabled"> 28/23 GB</small> | ||
</div> | ||
</div> | ||
<div class="mt-5"> | ||
<div class="d-flex align-center justify-space-between"> | ||
<h5 class="text-h6 text-primary mb-0 line-height-none">Progress</h5> | ||
<small>{{ value }}%</small> | ||
</div> | ||
<v-progress-linear | ||
v-model="value" | ||
:buffer-value="bufferValue" | ||
rounded="md" | ||
color="primary" | ||
height="10" | ||
class="mt-2" | ||
></v-progress-linear> | ||
</div> | ||
</v-sheet> | ||
<div class="bg-lightwarning rounded-md pa-5 my-3 circle sm-circle lg-circle hide-menu"> | ||
<h4>Upgrade To Pro</h4> | ||
<h6 class="text-subtitle-2 text-medium-emphasis pr-11 mb-3 mt-2">To get more features and components</h6> | ||
<v-btn color="warning" variant="flat" target="_" href="https://codedthemes.com/item/berry-vue-admin-dashboard/"> Go Premium </v-btn> | ||
</div> | ||
</template> | ||
<style lang="scss"> | ||
.ExtraBox { | ||
position: relative; | ||
overflow: hidden; | ||
&:after { | ||
content: ''; | ||
position: absolute; | ||
width: 157px; | ||
height: 157px; | ||
background: rgb(var(--v-theme-primary)); | ||
border-radius: 50%; | ||
top: -105px; | ||
right: -96px; | ||
opacity: 0.4; | ||
} | ||
} | ||
.line-height-none { | ||
line-height: normal; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,7 +87,3 @@ | |
} | ||
} | ||
|
||
.rounded-square { | ||
width: 20px; | ||
height: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module 'vue3-apexcharts'; |
Oops, something went wrong.