vue-code-highlight icon indicating copy to clipboard operation
vue-code-highlight copied to clipboard

Trim whitespaces

Open KarmaBlackshaw opened this issue 3 years ago • 0 comments

I have a nested block and inside it is the code highlight component


<div>
  <div>
    <div>
      <CodeHighlight language="css">
        <code>
          .my-class {
          background-color: red;
          margin: 0;
          }
        </code>
      </CodeHighlight>
    </div>
  </div>
</div>

The good thing is it works, however, there's too much space on the left side. I wish to trim it down.

image

KarmaBlackshaw avatar Oct 27 '21 07:10 KarmaBlackshaw