naive-ui/styles/themes/dark/components/BaseCancelMark.scss

14 lines
394 B
SCSS
Raw Normal View History

2019-09-27 16:02:20 +08:00
@mixin setup-dark-base-cancel-mark {
$--base-cancel-mark-cross-color: (
"default": rgba(255, 255, 255, .3),
2019-10-12 14:23:40 +08:00
"hover": $--primary-6,
2019-11-06 15:57:03 +08:00
"active": $--primary-5,
"error-hover": $--error-5,
"error-active": $--error-5
2019-09-27 16:02:20 +08:00
) !global;
$--base-cancel-mark-arrow-color: (
"default": rgba(255, 255, 255, .3),
2019-11-06 15:57:03 +08:00
"active": $--primary-6,
"error-active": $--error-6
2019-09-27 16:02:20 +08:00
) !global;
}