Angular components don't inherit height so you have to set it in the styling.
either with: :host { display: block; }
in each component styles property or add with the cli / set as default:
"@schematics/angular:component": {
"displayBlock": true
}