From 39f745639f5aaefae226e93b72e6f9f1dd62edaf Mon Sep 17 00:00:00 2001 From: Gazook89 <58999374+Gazook89@users.noreply.github.com> Date: Tue, 28 Sep 2021 20:06:29 -0500 Subject: [PATCH] remove gradient, set counter to start at '2' --- client/homebrew/editor/editor.less | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/client/homebrew/editor/editor.less b/client/homebrew/editor/editor.less index 5ad1d3ffb..0097ddbf6 100644 --- a/client/homebrew/editor/editor.less +++ b/client/homebrew/editor/editor.less @@ -4,10 +4,12 @@ width : 100%; .codeEditor{ - height : 100%; - counter-reset : page; + height : 100%; + counter-reset : page; + counter-increment : page; .pageLine{ - background : linear-gradient(to bottom, white 80%, lightgray); + background : #33333328; + border-top : #339 solid 1px; &:after{ content : counter(page); counter-increment : page;