scss 创建实用程序类以强制执行垂直间距
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 创建实用程序类以强制执行垂直间距相关的知识,希望对你有一定的参考价值。
/**
* The base font size
*
* @nuclide Font Size
* @section Config > Typography
*/
$type__size--base: 16px;
@import './typography';
/**
* The vertical spacing default
*
* @nuclide vertical-spacing
* @section Config > Spacing
*/
$g-spacing: $type__size--base !default;
/**
* The map of vertical layout spacings
* Decrease: 12, 8, 4
* Increase: 24, 32, 40, 48, 56, 72, 96
*
* @nuclide vertical-spacings
* @section Config > Spacing
*/
$vertical-spacing: (
small: (
1x: floor($g-spacing - 4),
2x: floor($g-spacing / 2),
3x: floor($g-spacing / 4),
),
large: (
1x: ceil($g-spacing / 2 * 3),
2x: ceil($g-spacing / 2 * 4),
3x: ceil($g-spacing / 2 * 5),
4x: ceil($g-spacing / 2 * 6),
5x: ceil($g-spacing / 2 * 7),
6x: ceil($g-spacing / 2 * 9),
7x: ceil($g-spacing / 2 * 12),
)
);
/**
* Base vertical spacing class
*/
.u-spacing {
margin-bottom: $g-spacing;
}
/**
* Loop over the map and create vertical layout utility classes
* Example: `.u-spacing__large--2x`
*/
// Loop over the vertical spacing map
@each $size, $collection in $vertical-spacing {
// Loop over each collection (ie 'small')
@each $x, $spacing in $collection {
.u-spacing__#{$size}--#{$x} {
margin-bottom: $spacing + px;
}
}
}
以上是关于scss 创建实用程序类以强制执行垂直间距的主要内容,如果未能解决你的问题,请参考以下文章
强制删除 Qt 中的所有水平间距
HTML电子邮件中图像之间的垂直间距
Bootstrap 4 间距实用程序的 antd 等效项是啥?
scss 从SCSS生成CSS间距类
如何在 Bootstrap 中使用间距实用程序类
scss 使用Sass的实用程序类