-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(demo): bootstrap 4 demos card text formatting incorrectly. (#1656)
* Fix Bootstrap 4 and card text #1637 Moved card class to a surrounding div so text formats correctly with Bootstrap 4 * Fix Bootstrap 4 and card text #1637 Moved card class to a surrounding div so text formats correctly with Bootstrap 4
- Loading branch information
1 parent
2b3fb8d
commit d8f42df
Showing
3 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<rating [(ngModel)]="rate" [max]="max" [readonly]="isReadonly"></rating> | ||
|
||
<pre class="card card-block card-header" style="margin:15px 0;">Rate: <b>{{rate}}</b> </pre> | ||
<div class="card"> | ||
<pre class="card-block card-header" style="margin:15px 0;">Rate: <b>{{rate}}</b> </pre> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters