Text overflow with ellipses on breadcrumb for long titles.

This commit is contained in:
mateuswetah 2020-05-18 14:40:41 -03:00
parent c6582ccb81
commit 9908ecfc5d
2 changed files with 4 additions and 1 deletions

View File

@ -408,6 +408,9 @@ nav{
&[aria-label='breadcrumb']{ &[aria-label='breadcrumb']{
border-bottom: 1px solid #cbcbcb; border-bottom: 1px solid #cbcbcb;
font-size: 0.875rem; font-size: 0.875rem;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
.breadcrumb{ .breadcrumb{
background: transparent; background: transparent;
@media only screen and (min-width: 992px){ @media only screen and (min-width: 992px){

File diff suppressed because one or more lines are too long