Fixed overflowing text in cards
This commit is contained in:
parent
04769b81c0
commit
a621c4635b
|
@ -478,11 +478,13 @@ input + .help {
|
||||||
border-top: 0 !important;
|
border-top: 0 !important;
|
||||||
}
|
}
|
||||||
.content:not(.extra) {
|
.content:not(.extra) {
|
||||||
|
&, & * {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
.floating.dropdown > .icon {
|
.floating.dropdown > .icon {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue