Add MyCompanyName.MyProjectName.Blazor.styles.css remove main.css duplication

pull/8453/head
Halil İbrahim Kalkan 5 years ago
parent bf12bbf066
commit 308ccf0f96

@ -2,6 +2,9 @@
namespace MyCompanyName.MyProjectName.Blazor namespace MyCompanyName.MyProjectName.Blazor
{ {
/* Add your global styles/scripts here.
* See https://docs.abp.io/en/abp/latest/UI/Blazor/Global-Scripts-Styles to learn how to use it
*/
public class MyProjectNameBundleContributor : IBundleContributor public class MyProjectNameBundleContributor : IBundleContributor
{ {
public void AddScripts(BundleContext context) public void AddScripts(BundleContext context)

@ -9,7 +9,7 @@
<!--ABP:Styles--> <!--ABP:Styles-->
<link href="global.css?_v=637517506080977400" rel="stylesheet"/> <link href="global.css?_v=637517506080977400" rel="stylesheet"/>
<link href="main.css" rel="stylesheet"/> <link href="MyCompanyName.MyProjectName.Blazor.styles.css" rel="stylesheet"/>
<!--/ABP:Styles--> <!--/ABP:Styles-->
</head> </head>

@ -1,4 +1,5 @@
.spinner { /* Global styles for the MyProjectName application */
.spinner {
width: 40px; width: 40px;
height: 40px; height: 40px;
display: block; display: block;
@ -45,4 +46,4 @@
transform: scale(1.0); transform: scale(1.0);
-webkit-transform: scale(1.0); -webkit-transform: scale(1.0);
} }
} }
Loading…
Cancel
Save