Undo toast invisible container blocks underlying UI
Štěpán Ševčík
Steps:
1.act: In any task with subtasks, change status of the subtask
1.observe: Toast "Undo" appears
Next to the visible toast, other interactive elements are present but are not clickable because element with css class .toast has width: 340px;. This reserves space for toast but the visual part of toast does not actually fill it.
Proposition:
change
width:340px;
to max-width: 340px
so that there is no abundant invisible space to prevent interaction with underlying elements.Log In