Skip to content

Instantly share code, notes, and snippets.

View michaelabon's full-sized avatar

Michael Abon (Mike Kenyon) michaelabon

View GitHub Profile
@alicia
alicia / spacing.scss
Created July 3, 2015 20:52
css spacing - generates classes to add small, medium, and large margin and padding
$spacing-small: 10px;
$spacing-medium: $spacing-small * 2;
$spacing-large: $spacing-small * 4;
$size-map: (
's': $spacing-small,
'm': $spacing-medium,
'l': $spacing-large,
);