@bic-fe/mds-ui
Version:
A set of enterprise-class Vue UI components.
35 lines (34 loc) • 933 B
CSS
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable declaration-bang-space-before */
/* stylelint-disable declaration-bang-space-before */
.mds-back-top {
z-index: 10;
box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.04);
position: fixed;
right: 100px;
bottom: 50px;
height: 40px;
width: 40px;
cursor: pointer;
}
.mds-back-top-content {
border: 1px solid #fff;
height: 40px;
width: 40px;
border-radius: 2px;
color: #fff;
text-align: center;
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mds-back-top-content:hover {
border: 1px solid #0364ff;
color: #0364ff;
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mds-back-top-content:hover .mds-back-top-icon path {
fill: rgba(64, 64, 64, 0.4);
font-size: 20px;
color: #0364ff;
fill: #0364ff;
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}