hugo-theme-next/assets/css/_common/outline/header/bookmark.scss
2022-05-21 15:01:19 +08:00

25 lines
463 B
SCSS

@if $cfg_bookmark_enable {
.book-mark-link {
border-bottom: 0;
position: fixed;
top: -10px;
transition: top .3s;
@include sidebar-toggle-position(true);
@include tablet-mobile() {
display: none;
}
&::before {
color: convert($cfg_bookmark_color);
font-size: 32px;
line-height: 1;
@include font-family-icons('\f02e');
}
}
.book-mark-link:hover, .book-mark-link-fixed {
top: -2px;
}
}