mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-17 03:04:27 +00:00
27 lines
513 B
SCSS
27 lines
513 B
SCSS
// 状态
|
|
// ----------------------------------------
|
|
@mixin calendar-cell-state(
|
|
$background,
|
|
$color,
|
|
$border-color
|
|
) {
|
|
background: $background;
|
|
color: $color;
|
|
border-color: $border-color;
|
|
}
|
|
|
|
// 卡片模式单元尺寸
|
|
// ----------------------------------------
|
|
@mixin calendar-card-cell-size(
|
|
$width,
|
|
$height,
|
|
$corner: 0,
|
|
$margin-tb: 0
|
|
) {
|
|
width: $width;
|
|
height: $height;
|
|
line-height: $height - 2;
|
|
margin: $margin-tb auto;
|
|
border-radius: $corner;
|
|
}
|