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