Skip to content

Commit

Permalink
fix: .pl- and .pr- to .ps- and .pe-
Browse files Browse the repository at this point in the history
  • Loading branch information
ExFlo authored and fbasso committed May 12, 2021
1 parent ca40910 commit ae3a3fe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h5 class="m-0">Second panel</h5>
<ngb-panel [disabled]="disabled" [cardClass]="disabled ? 'disabled' : ''">
<ng-template ngbPanelHeader>
<div class="d-flex align-items-center justify-content-between">
<button ngbPanelToggle class="btn btn-link container-fluid text-left pl-0">Third panel</button>
<button ngbPanelToggle class="btn btn-link container-fluid text-left ps-0">Third panel</button>
<p *ngIf="disabled" class="text-muted m-0 small">[I'm&nbsp;disabled]</p>
</div>
</ng-template>
Expand Down
2 changes: 1 addition & 1 deletion demo/src/app/components/nav/demos/dynamic/nav-dynamic.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<li *ngFor="let id of tabs" [ngbNavItem]="id">
<a ngbNavLink>
Tab {{ id }}
<span class="close position-relative pl-2 font-weight-light" (click)="close($event, id)">×</span>
<span class="close position-relative ps-2 font-weight-light" (click)="close($event, id)">×</span>
</a>
<ng-template ngbNavContent>
<p>Tab {{ id }} content</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h3>
<h4>Properties</h4>
<p class="description">
<ng-template ngFor let-property [ngForOf]="apiDocs.properties">
<code class="pr-2">{{ property.name }}</code>&ngsp;
<code class="pe-2">{{ property.name }}</code>&ngsp;
</ng-template>
</p>
<p class="mt-3">Documentation available in <a routerLink="." fragment="{{directiveName}}">{{ directiveName }}</a></p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1 class="mb-4 me-auto me-md-none">{{ component | titlecase }}</h1>
</header>

<section class="row py-5 px-2 px-md-4 px-lg-5">
<div class="col-12 col-xl-9 px-md-0 pr-xl-4">
<div class="col-12 col-xl-9 px-md-0 pe-xl-4">
<ng-template [ngComponentOutlet]="(headerComponentType$ | async)!"></ng-template>
<router-outlet (activate)="updateNavigation($event)"></router-outlet>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1 class="mt-0">{{ pageTitle }}</h1>
</header>

<section class="row py-5 px-2 px-md-4 px-lg-5">
<div class="col-12 col-xl-9 px-md-0 pr-xl-4">
<div class="col-12 col-xl-9 px-md-0 pe-xl-4">
<ng-content></ng-content>
</div>

Expand Down

0 comments on commit ae3a3fe

Please sign in to comment.