[Bug] Wrong padding of Message element when widget is loading or empty #3819
-
Reproducible in vscode.dev or in VS Code Desktop?
Reproducible in the monaco editor playground?
Monaco Editor Playground CodeNo response Actual BehaviorThe vertical padding of the message element hides the border of the outside container. Expected BehaviorThe message element is rendered totally inside of the outside container. Additional ContextThis bug happened when I upgrade monaco-editor from version 0.21.2 to version 0.22.0. Currently, I need to customize the padding of message element by myself but I think it would be better if monaco-editor fix it inside their code. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
-
In version 0.33.0, I finally can align correct the message element by adding this workaround style: |
Beta Was this translation helpful? Give feedback.
In version 0.33.0, I finally can align correct the message element by adding this workaround style:
position: absolute;
top: 0;