Ontica/Empiria.Land.Intranet

View on GitHub
src/styles/base.scss

Summary

Maintainability
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

//
// Base HTML elements configuration
//

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: $background-color;
  color: $text-color;
  font-family: $font-family;
  font-size: $font-size-base;
  font-weight: $font-weight-base;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}