Incorporating Bootstrap 4 into my Angular 8 application, I am faced with an issue on the main page where I have two components sized md-5
and md-6
, respectively. To create a gap between them, I used offset-md-1
. However, the offset size is too large, resulting in more space than desired between the components. Is it possible to reduce the size of the offset
? Can offset-md-0.5
be used for this purpose? Alternatively, are there better approaches than relying solely on the bootstrap offset
feature?
<div class="container-fluid padding">
<div class="row">
<div class="container1 col-xs-12 col-sm-12 col-md-5">
<app-projectstatus></app-projectstatus>
</div>
<div class="container2 col-xs-12 col-sm-12 col-md-6 offset-md-1">
<app-upcomingreleases></app-upcomingreleases>
</div>
</div>
</div>