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

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 29 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/components/code-editor/editor.scss
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/components/code-editor/editor.scss
- Modified: 2024-02-18T18:40:24+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/3.3.3/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_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;
	}
}

```
