notion-enhancer/mods/code-line-numbers/app.css
CloudHill c4b4d31aa2 code-line-numbers: horizontal scroll bugfix
added background so that numbers no longer appear over the code
2020-12-11 17:15:35 +07:00

28 lines
610 B
CSS

/*
* code line numbers
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) 2020 CloudHill
* under the MIT license
*/
.notion-code-block.line-numbers > div {
position: relative;
}
.code-numbered {
padding-left: 48px !important;
}
#code-line-numbers {
font-size: var(--theme--font_code-size);
font-family: var(--theme--font_code);
color: var(--theme--text_ui_info);
background: var(--theme--code-background);
text-align: right;
position: absolute;
left: 0;
right: calc(100% - 48px);
padding-right: 18px;
overflow: hidden;
pointer-events: none;
}