chore: add style section dev/prod separator
All checks were successful
continuous-integration/drone/push Build is passing

* contains the same stylesheet and no bundling pipeline is in place atm
This commit is contained in:
surtur 2021-01-26 18:49:19 +01:00
parent bb189cac7f
commit 9dcd80ac58
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -4,7 +4,12 @@
ViewData["Title"] = "Home Page";
}
@section Styles {
<link rel="stylesheet" href="~/css/Stylezbro.css"/>
<environment include="Development">
<link rel="stylesheet" href="~/css/Stylezbro.css"/>
</environment>
<environment exclude="Development">
<link rel="stylesheet" href="~/css/Stylezbro.css"/>
</environment>
}
@{