[分享] 自定义CSS:标签样式、字体大小、选项卡隐藏等 #2845
moulai
started this conversation in
Show and tell
Replies: 5 comments 2 replies
-
大佬,标签样式貌似在 v0.20版本 已经不适用啦~ |
Beta Was this translation helpful? Give feedback.
1 reply
-
刷新了一下页面,就好了 😂😂 感谢🫡 |
Beta Was this translation helpful? Give feedback.
0 replies
-
v0.22版本的字体大小不起效果。 |
Beta Was this translation helpful? Give feedback.
0 replies
-
大佬,0.22.5怎么实现各级标题大小啊,h1,h2,h3之类单独设置 |
Beta Was this translation helpful? Give feedback.
0 replies
-
/* 修改标签样式 */
.dark .inline-block {
border: 1px solid rgb(110,110,110);
border-radius: 8px;
background-color: rgb(90, 90, 90);
padding: 0px 4px;
}
.inline-block {
border: 1px solid rgb(230,230,230);
border-radius: 8px;
background-color: rgb(245, 245, 245);
padding: 0px 4px;
}
/* 修改Memo字号 */
.text-base {
font-size: 1rem;
}
/* 修改代码块字号 */
.text-sm {
font-size: 0.875rem;
}
/* 隐藏 通知 选项卡 */
#header-inbox {
display: none;
}
/* 隐藏 个人资料 选项卡 */
#header-profile {
display: none;
}
/* 隐藏 探索 选项卡 */
#header-explore {
display: none;
} 0.22.4版本测试通过,但是超链接的字体大小暂未设置。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
已于v0.19.0测试通过。
Beta Was this translation helpful? Give feedback.
All reactions