mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
10 lines
446 B
SCSS
10 lines
446 B
SCSS
@mixin setup-dark-back-top {
|
|
$--back-top-button-fill: rgba(255, 255, 255, 0.3) !global;
|
|
$--back-top-button-fill-hover: $--n-primary-color !global;
|
|
$--back-top-button-fill-active: $--primary-7 !global;
|
|
$--back-top-box-shadow: (
|
|
'default': 0 2px 8px 0px rgba(0, 0, 0, .12),
|
|
'hover': 0 2px 12px 0px change-color($--n-primary-color, $alpha: .5),
|
|
'active': 0 2px 12px 0px change-color($--n-primary-color, $alpha: .5)
|
|
) !global;
|
|
} |