After changing which libraries are included in my subtheme and clicking "Save and Update Styles", several occurrences of the following error were written to primary-layout.scss...

  max-width: %;

It should probably be 100% by default.

CommentFileSizeAuthor
#2 Screen Shot 2016-04-30 at 1.36.35 AM.png175.93 KBkushvarma
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

ExTexan created an issue. See original summary.

kushvarma’s picture

Category: Bug report » Support request
FileSize
175.93 KB

Hi,
the value of max-width is depended on the breakpoints configuration you have set.
For example in when you create a sub-theme of omega using omega_starter kit, not all breakpoints are used, like @media all and (max-width: 479px) or @media all and (min-width: 480px) and (max-width: 767px) etc.
So when phpsass compiles the sass, it skips those breakpoints which are not used in the configuration.
If you want to use the all the standard breakpoints of omega theme.
Go to Appearance -> Appearance Settings -> Your Theme -> Layout Builder
In breakpoints group, select omega.standard and select Save and update.
You will find the sass is updated and all the values in primary-layout.scss will automatically have some value.
See the Screenshot.
Hope this helps.

Thanks

kushvarma’s picture

Priority: Major » Normal
ExTexan’s picture

@kushvarma, Thanks for that detailed reply. It does help.

kushvarma’s picture

Status: Active » Closed (works as designed)