# ghostkit/2.25.0/gutenberg/components/code-editor/editor.scss

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 2.25.0. 33 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/components/code-editor/editor.scss
- Raw: https://pluginprobe.com/plugins/ghostkit/2.25.0/raw/gutenberg/components/code-editor/editor.scss
- Modified: 2022-02-07T14:32:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/components/code-editor/editor.scss#L10-L20`.

```scss
@import "../../variables";

.ghostkit-component-code-editor {
  &.ace_editor {
    width: 100%;
    line-height: 1.45;
    background-color: $light-gray-100;
    border-radius: 3px;
    box-shadow: 0 0 0 1px $light-gray-400;

    .ace_gutter {
      background-color: $light-gray-400;
    }

    .ace_gutter-cell {
      background-color: $light-gray-600;
    }
  }

  .ace_tooltip {
    padding: 6px 10px;
    background: none;
    background-color: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 3px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 5%);
  }

  .ace_hidden-cursors {
    opacity: 0;
  }
}

```
