/**
 * Import basis core parts
 *
 */

// core imports
@use 'sass:meta';
@use './core/scopes.scss' as scopes;
@use './core/z-index.scss';

// make sure we have dynamic root font size
@include scopes.htmlDefault();

// The only style we use on body is to reset the margin
// the rest goes inside dnb-core-style
body {
  margin: 0;
}

// In order to be able to have the body stiles inside a app wrapper,
// we have this class helper to get the body styles inside the wrapper as well
// without using the body
.dnb-core-style {
  @include scopes.bodyDefault();
}

@include meta.load-css('core/helper-classes/helper-classes');
