7 lines
315 B
TypeScript
7 lines
315 B
TypeScript
export const ALLOWED_MEDIA_TYPES = [ 'image' ];
|
|
// Set the default width to a responsible size.
|
|
// Note that this width is also set in the attached frontend CSS file and overrides when we update the template.
|
|
export const DEFAULT_LOGO_WIDTH = 60;
|
|
export const MIN_LOGO_SIZE = 20;
|
|
export const MAX_LOGO_WIDTH = 200;
|