mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-23 04:51:49 +08:00
205cd7a86d
Closes: BS-2946
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
import { html } from 'lit';
|
|
import { styleMap } from 'lit/directives/style-map.js';
|
|
|
|
export const EmbedGap = html`<span
|
|
data-v-embed-gap="true"
|
|
style=${styleMap({
|
|
userSelect: 'text',
|
|
padding: '0 0.5px',
|
|
outline: 'none',
|
|
})}
|
|
><v-text></v-text
|
|
></span>`;
|