mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
24 lines
393 B
SCSS
24 lines
393 B
SCSS
.page-content .wrapper {
|
|
.post-toc {
|
|
&>ul {
|
|
overflow: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.util-notify1 {
|
|
position: absolute;
|
|
z-index: 100;
|
|
background: rgba(0,0,0,0.7);
|
|
color: #FFF;
|
|
padding: 5px 10px;
|
|
font-size: 14px;
|
|
pointer-events: none;
|
|
opacity: 1;
|
|
transition: .2s ease;
|
|
|
|
&.hidden {
|
|
opacity: 0;
|
|
display: none;
|
|
}
|
|
} |