You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Card hover border overflowing past the card edge: .loopmosaic-item had no box-sizing set, so it defaulted to the browser's content-box. Setting a border on the widget's Card Border Hover tab added that border width on top of the card's existing size instead of absorbing it, growing the box slightly on hover and pushing it past its grid cell - most visible at the bottom edge. Added box-sizing: border-box so any hover border now draws inside the card's existing footprint and can never exceed it.