fix(typography): prevent bootstrap color override (#2161)

This commit is contained in:
Sergey Andrievskiy 2019-07-08 11:16:38 +03:00 committed by GitHub
parent 8f09ddda95
commit 243390c10f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -123,10 +123,10 @@
Far far away, behind the your awesomeness. Far far away, behind the your awesomeness.
</div> </div>
</div> </div>
<div class="item text-body"> <div class="item text-basic">
<div class="color bg-body"></div> <div class="color bg-body"></div>
<div> <div>
<h5 class="text-body">Body Text</h5> <h5 class="text-basic">Body Text</h5>
Far far away, behind the your awesomeness. Far far away, behind the your awesomeness.
</div> </div>
</div> </div>

View file

@ -100,6 +100,10 @@
} }
} }
.text-basic {
color: nb-theme(text-basic-color);
}
.text-link { .text-link {
color: nb-theme(link-text-color); color: nb-theme(link-text-color);
} }