Questions tagged [susy-sass]

Susy is a layout toolkit for the Sass CSS pre-processor. Susy is built to be flexible, so that you can customize it to fit your markup and your design, in a responsive and semantic way.

Susy is a layout toolkit for the Sass CSS pre-processor. Susy is built to be flexible, so that you can customize it to fit your markup and your design, in a responsive and semantic way. See more at http://susy.oddbird.net

148 questions
0
votes
0 answers

Susy grid same height

I have this susy grid and I would like to have all its columns the same height, I tried adding the display: table technique but I can't get it to work. I tried the suggestions posted in here but that didn't get me anywhere either, I created this…
ryangus
  • 679
  • 3
  • 8
  • 22
0
votes
1 answer

Added a scss file, compass does not generate css?

I've added a new .scss file to my components directory in Zen. Compass sees the file, because I get the message 'file modified' but I do not get a .css file generated I'm new to compass and sass. Do I need to map files somewhere?
Baybook
  • 137
  • 1
  • 4
0
votes
1 answer

How do I install Susy in my Rails App?

So far in my Gemfile i included # Gemfile gem 'sass-rails', '~> 5.0' gem 'susy' # config/application.rb require 'susy' I ran "bundle install" with no errors. Now i'm trying to write normal Susy and just set up the app: $susy: ( columns: 12, /* we…
M. Claire
  • 27
  • 6
0
votes
0 answers

Building a site with susy sass

I'm looking at using susy sass to build an entire website, as opposed to bootstrap. Am I right in saying that the site has to be built page per pge. I mean if say on the home the aside tag as 3 columns and on the about page the aside tag has 4…
user1937021
  • 10,151
  • 22
  • 81
  • 143
0
votes
1 answer

determine last child in row using susy2

I'm using susy to create a responsive grid and I was wondering if I have a set of columns like:
Col 1
Col 2
Col 3
how do I get susy to…
Ty T.
  • 586
  • 5
  • 18
0
votes
2 answers

Susy 2 Gallery and Gutter

I'm using the Susy 2 Gallery feature and would like to know how to influence the width of the vertical and horizontal gutters between each image in the gallery. At the moment, there is not enough width between the images.
user1493194
  • 313
  • 1
  • 3
  • 7
0
votes
1 answer

Is it possible to pass a value of 0 to span(0)?

Long tried to create a responsive navigation. But still turned out. But I'm still not sure I did the right thing. Because I passed a value of 0 in the span. Or so it is still possible to do? It works :) $big: (columns: 24, gutters: 1/2,math:…
oei
  • 571
  • 1
  • 5
  • 16
0
votes
1 answer

Susy prefix, suffix, pad wrong output with gutter-position inside

I don't know what is happening with the output of prefix, suffix and pad when using gutter-position: inside. For example: $susy: ( columns: 12, gutter-position: inside, global-box-sizing: border-box ); body { @include…
Mireba
  • 35
  • 5
0
votes
1 answer

Using susy with libsass - wrong output

I'm using libsass as it's faster than ruby sass and importing susy using bower. @import "../bower_components/susy/sass/susy"; $susy: ( columns: 12, gutter-position: inside, global-box-sizing: border-box ); #content { …
Mireba
  • 35
  • 5
0
votes
1 answer

How does the flag at?

There is a grid span(12) There are two blocks of text .main-container .content text text text text text text text text text .sidebar text text text text text text text text text Want to do so Write the code span(6 at 1)…
oei
  • 571
  • 1
  • 5
  • 16
0
votes
1 answer

Susy: Temporarily modify gutter settings using With-Layout

I have two seperate images right next to one another, and I want them to be contiguous. The problem is that I need to move the right-most image over to the left. I could use the size modifiers for the span mixin (narrow | wide ) but that would…
Andrew
  • 737
  • 2
  • 8
  • 24
0
votes
1 answer

Susy not removing last padding of item

I want to create a simple 4 row grit with susy, but recently i'm not able to get this working. I created the problem in Sassmeister: Link to problem in Sassmeister Is there something i miss here?
Ronald Zwiers
  • 780
  • 2
  • 10
  • 25
0
votes
1 answer

Susy 2 and Breakpoint

I am finally transitioning over to Susy 2 from Susy One and have been struggling a bit with the new syntax. Specifically, using it with the Breakpoint mixin. In Susy One, I had this: // Mobile First Settings .grid-construct{ $total-columns:…
Yahreen
  • 1,639
  • 7
  • 24
  • 38
0
votes
1 answer

Susy grid issues: TypeError: No implicit conversion of nil into String

I'm new to sass and I'm trying to move away from bootstrap in favour of a more tailored and less chubby framework. I'd really like to create nice grid layout using susy but I've came across a problem when trying to compile the scss files into…
Meeps
  • 387
  • 2
  • 3
  • 15
0
votes
0 answers

dynamic responsive grid using Suzy

I'm using Susy and want to create a Grid to show some elements (charts actually) whose order is determined at runtime (user can change the order). The problem is, there are charts that are preferably shown wider than others. Suppose at a certain…
herman
  • 11,740
  • 5
  • 47
  • 58