mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-07-31 11:55:17 +02:00
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
8 lines
148 B
SCSS
8 lines
148 B
SCSS
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height: $width) {
|
|
width: $width;
|
|
height: $height;
|
|
@include deprecate("`size()`", "v4.3.0", "v5");
|
|
}
|