mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
28 lines
549 B
CSS
28 lines
549 B
CSS
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
.editor-wrapper {
|
|
border: 2px solid gray;
|
|
}
|
|
#lexical-state {
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
|
|
.PlaygroundEditorTheme__quote {
|
|
margin: 0;
|
|
margin-left: 20px;
|
|
margin-bottom: 10px;
|
|
font-size: 15px;
|
|
color: rgb(101, 103, 107);
|
|
border-left-color: rgb(206, 208, 212);
|
|
border-left-width: 4px;
|
|
border-left-style: solid;
|
|
padding-left: 16px;
|
|
}
|