Bilibili-Evolved/registry/lib/components/feeds/fold-comments/fold-comment.scss
2021-10-26 13:19:37 +08:00

31 lines
612 B
SCSS

.panel-area .bb-comment {
.fold-comment {
position: -webkit-sticky;
position: sticky;
bottom: 0;
height: 40px;
width: calc(100% + 48px);
font-size: 14px;
transform: translateX(-24px);
display: flex;
align-items: center;
justify-content: center;
background-color: white;
color: #99a2aa;
cursor: pointer;
transition: all 0.2s ease-out;
z-index: 110;
border-radius: 4px;
&:hover {
color: black;
}
body.dark & {
background-color: #444;
color: #eee;
&:hover {
color: var(--theme-color);
}
}
}
}