naive-ui/styles/BackTop.scss
songwanli2025@163.com fdf2af8eb5 merge
2020-02-24 16:25:02 +08:00

39 lines
1.1 KiB
SCSS

@import './mixins/mixins.scss';
@include themes-mixin {
@include b(back-top) {
@include once {
@include fade-in-scale-up-transition(back-top);
position: fixed;
right: 40px;
bottom: 40px;
min-width: 40px;
height: 40px;
cursor: pointer;
@include m(transition-disabled) {
transition: none !important;
}
}
@include e(default-button) {
@include once {
transition: box-shadow .3s $--n-ease-in-out-cubic-bezier, fill .3s $--n-ease-in-out-cubic-bezier;
border-radius: 20px;
height: 40px;
width: 40px;
svg {
pointer-events: none;
}
}
fill: map-get($--back-top-button-fill, 'default');
box-shadow: map-get($--back-top-box-shadow, 'default');
&:hover {
box-shadow: map-get($--back-top-box-shadow, 'hover');
fill: map-get($--back-top-button-fill, 'hover');
}
&:active {
box-shadow: map-get($--back-top-box-shadow, 'active');
fill: map-get($--back-top-button-fill, 'active');
}
}
}
}