mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
* 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
10 lines
147 B
SCSS
10 lines
147 B
SCSS
// Sizing shortcuts
|
|
|
|
@mixin size($width, $height) {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
|
|
@mixin square($size) {
|
|
@include size($size, $size);
|
|
}
|