score:0

Accepted answer

it's probably because you have position: absolute on your typography and p.

when set position: absolute to any element it removed it from the document flow, that's why your list height is the min-height: 54px only.

try removing position: absolute

#type {
  margin-right: 40px;
}

#title {
  margin-top: 0px;
  margin-right: 40px;
}

Related Query

More Query from same tag