Files
low-code-react-app-b/packages/spark-tools/dist/designer-styles.css
2026-01-17 22:16:42 +00:00

28 lines
575 B
CSS

.debugger-overlay {
z-index: 1000000;
}
.debugger-overlay[data-element-name]::before {
content: attr(data-element-name);
display: var(--display-tag, none);
justify-content: center;
align-items: center;
position: absolute;
top: -1px;
left: -1px;
transform: translateY(-100%);
background-color: var(--fg-color);
color: white;
border-radius: 4px 4px 0 0;
border: 1px solid var(--fg-color);
border-bottom: none;
font-size: 11px;
font-weight: 400;
line-height: 1.5;
padding: 0px 6px 2px;
}
[contenteditable='true']:focus {
outline: none;
}