22 lines
413 B
SCSS
22 lines
413 B
SCSS
// from global to more precise
|
|
// sass lang utils
|
|
@use "sass:color";
|
|
@use "app/styles/app.scss";
|
|
// lib SAE Aero styles
|
|
@use 'sae-lib/src/styles/index.scss';
|
|
/* Fichier de styles global pour l'application */
|
|
|
|
// Importer les styles principaux
|
|
@import 'styles/main.scss';
|
|
|
|
// Styles globaux supplémentaires
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|