* Common component for upload item for main application and share extension * Addressed review comments * intl fixes --------- Co-authored-by: Mattermost Build <build@mattermost.com>
14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const SHARED_UPLOAD_STYLES = {
|
|
THUMBNAIL_SIZE: 64,
|
|
ICON_SIZE: 48,
|
|
FILE_CONTAINER_WIDTH: 264,
|
|
FILE_CONTAINER_HEIGHT: 64,
|
|
BORDER_RADIUS: 4,
|
|
SHADOW_OFFSET: {width: 0, height: 2},
|
|
SHADOW_OPACITY: 0.08,
|
|
SHADOW_RADIUS: 3,
|
|
ELEVATION: 1,
|
|
} as const;
|