/
bauerd
/
avitomanager
Обзор
Документация
Войти
/
bauerd
/
avitomanager
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
resources/js/themeConfig.js
37 строк
1 KB
bauer
модификация layout под полную ширину для проектов
26 ноя 2022, 20:37
26 ноя 2022, 20:37
34afc9d
Код
Авторство
О чём код?
// 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: 'AvitoManager', // 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: 'dark', // 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, }, }