Spot the bug in the profile row

from CSS flexbox
CSS Flexible Box Layout Module Level 1 intermediate 4 min 2 issues to find

Find the sizing bugs in this generated profile row.

CSS
.profile {
  display: flex;
  width: 18rem;
}
.avatar {
  width: 4rem;
}
.details {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
Open in playground
Report an error