I have the following issue displaying a page on Chrome and wondering if you encountered it as well.. Have you faced the following inconsistencies and how did you mitigate them?
In Chrome, one of my Nebular HTML tabs(TabB) is not left justified.
Although in TabA , using the same code, elements are left justified.
In Firefox, TabB as a completely different layout.
Also I noticed that whenever I change TabB bootstrap code let's say from col-md-4 to col-md-9, the alignment changes in Firefox but not in Chrome..I tried clearing Chrome cache and restart, still no luck.
Here is my code. Thanks in advance!!
<nb-card>
<nb-card-header>
<input nbInput id="search" class="search-input" placeholder="Search" #box (keyup)="onKey(box.value)">
</nb-card-header>
<nb-card-body>
<nb-tabset fullWidth>
<nb-tab tabTitle="TabA">
<div class="row">
<div class="col-md-4" *ngFor="let item of list_of_detail">
<nb-card status="success" *ngIf="item.env == 'A'">
<nb-card-header> {{ item.host }}</nb-card-header>
<nb-card-body>
version: {{ item.version }}
</nb-card-body>
<nb-card-footer>{{ item.service }} | {{ item.region }}</nb-card-footer>
</nb-card>
</div>
</div>
</nb-tab>
<nb-tab tabTitle="TabB">
<div class="row">
<div class="col-md-4" *ngFor="let item of list_of_detail">
<nb-card status="danger" *ngIf="item.env == 'B'">
<nb-card-header> {{ item.host }}</nb-card-header>
<nb-card-body>
version: {{ item.version }}
</nb-card-body>
<nb-card-footer>{{ item.service }} | {{ item.region }}</nb-card-footer>
</nb-card>
</div>
</div>
</nb-tab>
....

i hope you know that the col-sm effected for small devices only , not in your computer screen .|
At Bootstrap 4, you can drop the "xs-" indicator for the lowest breakpoint:
Part of the "mobile first" mentality.
Uses..
.col-Extra small (this code is for extra small deive screen eg: small android devises).col-sm-Small (this code is for small deive screen eg: latest smart phones).col-md-Medium (this code is for medium size deive screen ).col-lg-Large (this code is for large size deive screen eg: Computer screen).col-xl-Extra Large (this code is for extra large size deive screen eg: android tv or other big larger screen)the Bootstrap
colis mean how to display a content in different size of screens | you can set muliple class withclass="col-sm-12 col-md-6 col-lg-4 col-2". and now this will show in differently in different devises....if you cant creat it well, i recoment you to download Bootstrap themes from bootstrap's own website | or if you want to learn Bootstrap , i recoment you to w3schools.com/bootstrap4