Just add "h1" "h2" "h3" to notion's heading block
Notion Add Heading Style by imsingee
Details
Authorimsingee
LicenseMIT
Categorynotion
Created
Updated
Size601 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Notion Add Heading Style
@version 20220628.08.36
@namespace userstyles.world/user/imsingee
@description Just add "h1" "h2" "h3" to notion's heading block
@author imsingee
@license MIT
==/UserStyle== */
@-moz-document domain("notion.so") {
div[placeholder~="Heading"]::after {
margin-left: 0.5em;
font-size: 0.6em;
vertical-align: middle;
opacity: 0.7;
}
div[placeholder="Heading 1"]::after {
content: "h1";
}
div[placeholder="Heading 2"]::after {
content: "h2";
}
div[placeholder="Heading 3"]::after {
content: "h3";
}
}