mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Update changelog, Add custom use override
This commit is contained in:
parent
2eaf38f3d3
commit
0a1ef3c4fb
@ -16,6 +16,7 @@
|
||||
### Improvements
|
||||
|
||||
* Fix #3012 Add `$media-*` variables, set to `!default`
|
||||
* Fix #2797 Import dependencies individually for each component
|
||||
|
||||
## 0.9.1
|
||||
|
||||
|
@ -23,6 +23,16 @@ exportDartCSS('bulma-rtl', {
|
||||
file: './bulma-rtl.sass',
|
||||
});
|
||||
|
||||
// Custom import
|
||||
|
||||
fs.mkdir(`${DART_BASE_PATH}custom`, { recursive: true }, (err) => {
|
||||
if (err) throw err;
|
||||
});
|
||||
|
||||
utils.exportCSS(sass, fs, DART_BASE_PATH, 'custom/navbar', {
|
||||
data: '@use "./sass/components/navbar.sass" with ( $scheme-main: red );',
|
||||
});
|
||||
|
||||
// Single imports
|
||||
|
||||
const BULMA_IMPORT_PATH = `./sass/`;
|
||||
|
Loading…
Reference in New Issue
Block a user