Skip to content

Commit

Permalink
Changed MDC for Bulma
Browse files Browse the repository at this point in the history
  • Loading branch information
OnlyOnePro committed Sep 4, 2020
1 parent 2d87e37 commit b0fbe4e
Show file tree
Hide file tree
Showing 10 changed files with 70 additions and 36,728 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -343,5 +343,5 @@ healthchecksdb
NStart/wwwroot/dist
## Ignored Attainable Files
NStart/wwwroot/lib/animatecss/
NStart/wwwroot/lib/jquery/
NStart/wwwroot/lib/material-components/
NStart/wwwroot/lib/bulma/
NStart/wwwroot/lib/jquery/
39 changes: 39 additions & 0 deletions NStart/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,45 @@ module.exports = function (grunt) {
filter: "isFile",
flatten: true
},
// Bulma.io CSS
{
src: nodeRoot + "bulma/css/*",
dest: targetPath + "bulma/dist/css",
expand: true,
filter: "isFile",
flatten: true
},
// Bulma Badges
{
src: nodeRoot + "bulma-badge/dist/css/*",
dest: targetPath + "bulma/plugins/bulma-badge/dist/css/",
expand: true,
filter: "isFile",
flatten: true
},
// Bulma Tags
{
src: nodeRoot + "bulma-tagsinput/dist/css/*",
dest: targetPath + "bulma/plugins/bulma-tagsinput/dist/css/",
expand: true,
filter: "isFile",
flatten: true
},
{
src: nodeRoot + "bulma-tagsinput/dist/js/*",
dest: targetPath + "bulma/plugins/bulma-tagsinput/dist/js/",
expand: true,
filter: "isFile",
flatten: true
},
// Bulma Timeline
{
src: nodeRoot + "bulma-timeline/dist/css/*",
dest: targetPath + "bulma/plugins/bulma-timeline/dist/css/",
expand: true,
filter: "isFile",
flatten: true
},
// jQuery Library
{
src: nodeRoot + "jquery/dist/*",
Expand Down
1 change: 0 additions & 1 deletion NStart/NStart.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\lib\material-components\" />
<Folder Include="wwwroot\fonts\" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion NStart/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<environment include="Development">
<link rel="stylesheet" href="~/lib/animatecss/dist/animate.css" />
<link rel="stylesheet" href="~/lib/material-components/css/material-components-web.css" />
<link rel="stylesheet" href="~/lib/bulma/dist/css/bulma.css" />
<link rel="stylesheet" href="~/css/line-awesome/line-awesome.min.css" />
<link rel="stylesheet" href="~/css/fonts.css" async />
</environment>
Expand Down
Loading

0 comments on commit b0fbe4e

Please sign in to comment.