/**
 * Copyright (c) 2020 kedacom
 * OpenATC is licensed under Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 * http://license.coscl.org.cn/MulanPSL2
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
 * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
 * See the Mulan PSL v2 for more details.
 **/
 body {
   height: 100%;
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
  //  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
   overflow-x: hidden;
   background-color: $--background-color-base;
 }
 
 label {
   font-weight: 700;
 }
 
 html {
   height: 100%;
   box-sizing: border-box;
 }
 
 #app{
   height: 100%;
 }
 
 *,
 *:before,
 *:after {
   box-sizing: inherit;
 }
 
 a,
 a:focus,
 a:hover {
   cursor: pointer;
   color: inherit;
   outline: none;
   text-decoration: none;
 }
 
 div:focus{
   outline: none;
  }
 
 a:focus,
 a:active {
   outline: none;
 }
 
 a,
 a:focus,
 a:hover {
   cursor: pointer;
   color: inherit;
   text-decoration: none;
 }
 
 .clearfix {
   &:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
   }
 }
 
 .app-container {
   padding: 10px;
 }
 
 .components-container {
   margin: 12px 12px;
   position: relative;
 }