28 lines
464 B
SCSS
28 lines
464 B
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
|
|
$font-size-xs: 0.625rem;
|
|
$font-size-sm: 1rem;
|
|
$font-size-md: 1.25rem;
|
|
$font-size-lg: 2.5rem;
|
|
$font-size-xl: 6.25rem;
|
|
|
|
$primary: #E3000E ;
|
|
$secondary: #D2D2D2 ;
|
|
$light: #FFFFFF ;
|
|
$dark: #3A3A39 ;
|
|
|
|
// regular style toast
|
|
@import '~ngx-toastr/toastr';
|
|
@import "styles/bootstrap-custom";
|
|
|
|
html{
|
|
height: 100%;
|
|
}
|
|
|
|
body{
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|