Otherwise phpstorm doesn't understand the paths correctly. He thinks that this is not a complete application, but a package. And when creating a class, the namespace indicates “app” with a small letter, but should be “App”.
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| /*
 | |
| 
 | |
| =========================================================
 | |
| * Volt - Free Bootstrap 5 Dashboard
 | |
| =========================================================
 | |
| 
 | |
| * Product Page: https://themesberg.com/product/admin-dashboard/volt-bootstrap-5-dashboard
 | |
| * Copyright 2021 Themesberg (https://www.themesberg.com)
 | |
| 
 | |
| * Designed and coded by https://themesberg.com
 | |
| 
 | |
| =========================================================
 | |
| 
 | |
| * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Please contact us to request a removal. Contact us if you want to remove it.
 | |
| 
 | |
| */
 | |
| 
 | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
 | |
| 
 | |
| // update variables here
 | |
| @import "variables";
 | |
| 
 | |
| @import "bootstrap/scss/functions";
 | |
| @import "volt/variables";
 | |
| 
 | |
| // Third party
 | |
| @import 'vanillajs-datepicker/sass/datepicker.scss';
 | |
| @import "chartist/dist/scss/chartist.scss";
 | |
| 
 | |
| // Bootstrap
 | |
| @import "bootstrap/scss/variables";
 | |
| @import "bootstrap/scss/mixins";
 | |
| @import "bootstrap/scss/utilities";
 | |
| 
 | |
| // Modify utilities here
 | |
| @import "volt/utilities";
 | |
| 
 | |
| // Bootstrap Layout & components
 | |
| @import "bootstrap/scss/root";
 | |
| @import "bootstrap/scss/reboot";
 | |
| @import "bootstrap/scss/type";
 | |
| @import "bootstrap/scss/images";
 | |
| @import "bootstrap/scss/containers";
 | |
| @import "bootstrap/scss/grid";
 | |
| @import "bootstrap/scss/tables";
 | |
| @import "bootstrap/scss/forms";
 | |
| @import "bootstrap/scss/buttons";
 | |
| @import "bootstrap/scss/transitions";
 | |
| @import "bootstrap/scss/dropdown";
 | |
| @import "bootstrap/scss/button-group";
 | |
| @import "bootstrap/scss/nav";
 | |
| @import "bootstrap/scss/navbar";
 | |
| @import "bootstrap/scss/card";
 | |
| @import "bootstrap/scss/accordion";
 | |
| @import "bootstrap/scss/breadcrumb";
 | |
| @import "bootstrap/scss/pagination";
 | |
| @import "bootstrap/scss/badge";
 | |
| @import "bootstrap/scss/alert";
 | |
| @import "bootstrap/scss/progress";
 | |
| @import "bootstrap/scss/list-group";
 | |
| @import "bootstrap/scss/close";
 | |
| @import "bootstrap/scss/toasts";
 | |
| @import "bootstrap/scss/modal";
 | |
| @import "bootstrap/scss/tooltip";
 | |
| @import "bootstrap/scss/popover";
 | |
| @import "bootstrap/scss/carousel";
 | |
| @import "bootstrap/scss/spinners";
 | |
| 
 | |
| // Helpers
 | |
| @import "bootstrap/scss/helpers";
 | |
| 
 | |
| // Utilities
 | |
| @import "bootstrap/scss/utilities/api";
 | |
| // scss-docs-end import-stack
 | |
| 
 | |
| // volt mixins & functions
 | |
| @import "volt/mixins";
 | |
| @import "volt/functions";
 | |
| 
 | |
| // Layout
 | |
| @import "volt/layout";
 | |
| 
 | |
| // Components
 | |
| @import "volt/components";
 | |
| 
 | |
| // Forms
 | |
| @import "volt/forms";
 | |
| 
 | |
| // write your custom styles here!
 |