Project
ide
Description
Plain language
Confirmation-style modals render the icon + message strip using .modal-message-row. CSS sets padding: 0 10px, so top and bottom padding are 0px in computed style. This is easy to miss visually; DevTools Computed shows it clearly.
Different surface from Send Feedback .dialog-header (bounty-challenge#38129).
Technical detail
.modal-message-row,
.dialog-message-row {
display: flex;
flex-grow: 1;
align-items: center;
padding: 0 10px;
}
Error Message
Debug Logs
System Information
Screenshots
Steps to Reproduce
- Open a modal that uses
.modal-message-row (e.g. delete confirm, approval).
- DevTools: select the row, Computed padding — 0px top/bottom, 10px left/right.
Expected Behavior
Non-zero vertical padding on the message row (or explicit design token), not 0 on the block axis.
Actual Behavior
padding: 0 10px — zero vertical padding.
Additional Context
No response