mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* Fix favicon and icon * - fixed menu item colors - fixed footer item colors * - fixed input focus * - fixed slug color - fixed primary button hover color * - fixed chat colors * - fixed editor button colors * Add logo-r-circle.svg * Add new settings in logos.js and logos.ts * Brand 'categories.*' files * Add brand categories to locales * Add 'categories.*' SVGs * Move categories SVGs to folder 'webapp/assets/_new/icons/svgs' * Change paths to icon name * Remove gender language * Remove '.svg' from icon names and replace underscores by dashes --------- Co-authored-by: Sebastian Stein <sebastian@codepassion.de>
27 lines
895 B
JavaScript
27 lines
895 B
JavaScript
// this file is duplicated in `backend/src/config/logos.js` and `webapp/constants/logos.js` and replaced on rebranding
|
|
// this are the paths in the webapp
|
|
export default {
|
|
LOGO_HEADER_PATH: '/img/custom/logo-horizontal.svg',
|
|
LOGO_HEADER_MOBILE_PATH: '/img/custom/logo-horizontal.svg',
|
|
LOGO_HEADER_WIDTH: '260px',
|
|
LOGO_HEADER_MOBILE_WIDTH: '260px',
|
|
LOGO_HEADER_CLICK: {
|
|
// externalLink: {
|
|
// url: 'https://ocelot.social',
|
|
// target: '_blank',
|
|
// },
|
|
externalLink: null,
|
|
internalPath: {
|
|
to: {
|
|
name: 'index',
|
|
},
|
|
scrollTo: '.main-navigation',
|
|
},
|
|
},
|
|
LOGO_SIGNUP_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_WELCOME_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_LOGOUT_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_PASSWORD_RESET_PATH: '/img/custom/logo-squared.svg',
|
|
LOGO_MAINTENACE_RESET_PATH: '/img/custom/logo-squared.svg',
|
|
}
|