/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ export default class Constants { public static FULL_WIDTH = '100%' public static FULL_HEIGHT = '100%' public static DIALOG_WIDTH = 395 public static DIALOG_HEIGHT = 117 public static DIALOG_BORDER_RADIUS = 32 public static DIALOG_TITLE_FONT_SIZE = 16 public static DIALOG_TITLE_FONT_WEIGHT = 400 public static DIALOG_TITLE_OPACITY = 1 public static DIALOG_TITLE_MARGIN_TOP = 24 public static DIALOG_TITLE_MARGIN_BOTTOM = 16 public static DIALOG_TITLE_LINE_HEIGHT = 22 public static BUTTON_HEIGHT = 40 public static BUTTON_WIDTH = 100 public static BUTTON_MARGIN = 7 public static BUTTON_TEXT_FONT_SIZE = 16 public static BUTTON_TEXT_FONT_WEIGHT = 500 public static SPLIT_FONT_SIZE = 24 }