Skip to content

Commit

Permalink
Merge pull request #44 from mkocansey/development
Browse files Browse the repository at this point in the history
Fixes #43
  • Loading branch information
mkocansey authored Jun 14, 2022
2 parents 79aed56 + 0efe5ef commit c2dcc0d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
12 changes: 1 addition & 11 deletions src/resources/assets/compiled/css/bladewind-ui.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/resources/views/components/centered-content.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'tiny' => 'md'
]
])
<div class="max-w-7xl max-w-6xl max-w-2xl max-w-lg max-w-md"></div>
<div class="max-w-md max-w-lg max-w-2xl max-w-3xl max-w-4xl max-w-6xl max-w-7xl "></div>
<div class="max-w-{{$width[$size]}} mx-auto">
{{ $slot }}
</div>
10 changes: 9 additions & 1 deletion webpack.mix.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
let mix = require('laravel-mix');

mix.options({
cssNano: {
discardComments: {
removeAll: true,
},
},
})

mix
.postCss('src/resources/assets/raw/css/app.css', 'src/resources/assets/compiled/css/bladewind-ui.min.css', [
require('tailwindcss'),
]);

// run npx mix to generate compiled css
// run npx mix --production to generate compiled css

0 comments on commit c2dcc0d

Please sign in to comment.