I copied the divine layout theme into my sub-theme.

Problem: The contents limited to one column when I switched to the cloned divine layout.

Both generated CSS are different in the desktop breakpoint.

Example:

generated css

divine.layout.css
width: 50.33557%;

abc.layout.css
width: 6.77966%;

I believe the divine.layout.scss has problem.

Any patch for this?

Comments

jessicakoh’s picture

Issue summary: View changes
jessicakoh’s picture

I got this. The syntax in divine.layout.scss has problem with Singularity gs 1.4.

Here is the correct syntax.

// Set Singularity grid variables.
//$grids: 1;
//$grids: add-grid(25 15 at $tab);
//$grids: add-grid(25 15 9 at $desk);
@include add-grid(1);
@include add-grid(25 15 at $tab);
@include add-grid(25 15 9 at $desk);

//$gutters: 1/3;
@include add-gutter(1/3);

Meantime, I need to figure out how to use Tower Git to generate and then submit my first ever patch.

jessicakoh’s picture

Status: Active » Needs work

I need to figure out how to generate a patch with Tower Git. Be right back.

steinmb’s picture

Version: 7.x-4.3 » 7.x-4.x-dev
Status: Needs work » Active
Issue tags: -Sass, -bug

How is that patch coming along? Make sure it can be applied to dev.

scottsawyer’s picture