0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-22 18:17:52 +00:00

Merge pull request #1586 from Gazook89/CodeMirror-Page-Break-Style-Tweak

Update editor.less for .pageLine
This commit is contained in:
Trevor Buckner
2021-09-29 21:00:00 -04:00
committed by GitHub

View File

@@ -5,9 +5,17 @@
.codeEditor{
height : 100%;
counter-reset : page;
counter-increment : page;
.pageLine{
background-color : fade(#333, 15%);
border-bottom : #333 solid 1px;
background : #33333328;
border-top : #339 solid 1px;
&:after{
content : counter(page);
counter-increment : page;
float : right;
color : gray;
}
}
.columnSplit{
font-style : italic;