mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							549 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							549 B
						
					
					
				using System.Collections.Generic;
 | 
						|
using Volo.Abp.Bundling;
 | 
						|
 | 
						|
namespace Volo.Abp.AspNetCore.Components.WebAssembly.Theming
 | 
						|
{
 | 
						|
    public class BundleContributer : BaseBundleContributer
 | 
						|
    {
 | 
						|
        public override string[] GetStyles()
 | 
						|
        {
 | 
						|
            return new string[]
 | 
						|
            {
 | 
						|
                "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/bootstrap/css/bootstrap.min.css",
 | 
						|
                "_content/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/libs/fontawesome/css/all.css",
 | 
						|
            };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |