Semantic-Org / Semantic-UI-Meteor

Official Semantic UI Integration for Meteor
MIT License
224 stars 33 forks source link

variable override bug in menu #110

Closed Maxhodges closed 7 years ago

Maxhodges commented 8 years ago

I'm using the Meteor package (2.2.1) for SUI.

in my theme's /collection/menu.variables.import.less flie I added @largeWidth = 16rem; which should change the width of my vertical menu, but something is wrong with the build process because it's not overriding. We tested things over and over and we're pretty sure this is a bug.

theme.config.import.less is setup to use my theme

...
/* Collections */
@breadcrumb: 'default';
@form: 'default';
@grid: 'default';
@menu: 'blackship';
@message: 'default';
@table: 'default';
...

But the style in my app comes out as 18rem (the default) not 16rem (my override)

.ui.large.inverted.vertical.menu {
    width: 18rem;
}
nooitaf commented 7 years ago

should it not be..

@largeWidth: 16rem;

instead of

@largeWidth = 16rem;

feel free to reopen