Initial project

This commit is contained in:
liangping
2021-07-21 22:07:38 +08:00
commit ae30de057d
465 changed files with 52080 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
// Theme Colors
// Initially this will be blank. Later on when app is initialized we will assign bootstrap colors to this from CSS variables.
export const $themeColors = {}
// App Breakpoints
// Initially this will be blank. Later on when app is initialized we will assign bootstrap breakpoints to this object from CSS variables.
export const $themeBreakpoints = {}
// APP CONFIG
export const $themeConfig = {
app: {
appName: 'Wallet', // Will update name in navigation menu (Branding)
// eslint-disable-next-line global-require
appLogoImage: require('@/assets/images/logo/logo.svg'), // Will update logo in navigation menu (Branding)
},
layout: {
isRTL: false,
skin: 'light', // light, dark, bordered, semi-dark
routerTransition: 'zoom-fade', // zoom-fade, slide-fade, fade-bottom, fade, zoom-out, none
type: 'vertical', // vertical, horizontal
contentWidth: 'full', // full, boxed
menu: {
hidden: false,
isCollapsed: false,
},
navbar: {
// ? For horizontal menu, navbar type will work for navMenu type
type: 'floating', // static , sticky , floating, hidden
backgroundColor: '', // BS color options [primary, success, etc]
},
footer: {
type: 'static', // static, sticky, hidden
},
customizer: true,
enableScrollToTop: true,
},
}