mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
28 lines
575 B
CSS
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;
|
|
}
|