Skip to content

Commit

Permalink
Add missing mixin css part in generated css file (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp authored Jun 21, 2024
1 parent 8223fc1 commit c6294c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
:root {
--ember-power-calendar-cell-size: 35px;
}

@import './ember-power-calendar.scss';

.ember-power-calendar {
@include ember-power-calendar($cell-size: 'var(--ember-power-calendar-cell-size)');
}
2 changes: 1 addition & 1 deletion ember-power-calendar/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const addon = new Addon({
export default [
// Compile scss file for js import
{
input: './_index.scss',
input: './ember-power-calendar-for-css-generate.scss',
output: {
file: './vendor/ember-power-calendar.js',
assetFileNames: '[name][extname]',
Expand Down

0 comments on commit c6294c6

Please sign in to comment.