dash-website/src/scss/mixins/_size.scss
Hunter Lester 3278f692df Wallet downloads page (#60)
* adds new dash community logos

* adds os logos, removes mistakenly uploaded dash logos

* adds correct images from design PSD

* adds wallets page and hero

* initial OS logos

* adds bootstrap min js and scss files for modals, navs, and tooltips

* implements pills and tab panes

* adds html module for win-core modal

* formats prototype modal
2016-12-16 10:05:15 +01:00

10 lines
147 B
SCSS

// Sizing shortcuts
@mixin size($width, $height) {
width: $width;
height: $height;
}
@mixin square($size) {
@include size($size, $size);
}