mirror of
https://github.com/docmost/docmost.git
synced 2026-05-09 07:43:06 +08:00
26 lines
395 B
CSS
26 lines
395 B
CSS
:global(.ProseMirror .node-embed.ProseMirror-selectednode) {
|
|
outline: none;
|
|
}
|
|
|
|
.embedContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.embedWrapper {
|
|
@mixin light {
|
|
background-color: var(--mantine-color-gray-0);
|
|
}
|
|
|
|
@mixin dark {
|
|
background-color: var(--mantine-color-dark-7);
|
|
}
|
|
}
|
|
|
|
.embedIframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
border-radius: 8px;
|
|
}
|