Files
NotionNext/themes/heo/style.js
tangly1024 89634479b5 theme-heo
2023-07-13 22:13:47 +08:00

47 lines
941 B
JavaScript

/* eslint-disable react/no-unknown-property */
/**
* 此处样式只对当前主题生效
* 此处不支持tailwindCSS的 @apply 语法
* @returns
*/
const Style = () => {
return <style jsx global>{`
.test {
text-color: red;
}
// 公告栏中的字体固定白色
#announcement-content .notion{
color: white;
}
::-webkit-scrollbar-thumb {
background: rgba(60, 60, 67, 0.4);
border-radius: 8px;
cursor: pointer;
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.today-card-cover {
-webkit-mask-image: linear-gradient(to top, transparent 5%, black 70%);
mask-image: linear-gradient(to top, transparent 5%, black 70%);
}
.recent-top-post-group::-webkit-scrollbar {
display: none;
}
.scroll-hidden::-webkit-scrollbar {
display: none;
}
`}</style>
}
export { Style }