editor.js/src/styles/stub.css
Peter Savchenko b39996616c
chore(perf): initialisation and rendering performance optimisations (#2430)
* renderer batching

* initialization and rendering performance optimized

* insertMany api method added

* Update index.html

* rm old method

* upd changelog

* upd paragraph

* paste tests fixed

* api blocks tests fixed

* backspace event tests fixed

* async issues in tests fixed

* eslint

* stub block added, tests added

* eslint

* eslint

* add test for insertMany()

* Update package.json
2023-08-08 22:17:09 +03:00

26 lines
420 B
CSS

.ce-stub {
display: flex;
align-items: center;
padding: 12px 18px;
margin: 10px 0;
border-radius: 10px;
background: var(--bg-light);
border: 1px solid var(--color-line-gray);
color: var(--grayText);
font-size: 14px;
svg {
width: var(--icon-size);
height: var(--icon-size);
}
&__info {
margin-left: 14px;
}
&__title {
font-weight: 500;
text-transform: capitalize;
}
}