mirror of https://github.com/bastienwirtz/homer
fix(cards): Avoid lowercase letters cut off #794
parent
13fb05696a
commit
20fb0c2254
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
@mixin ellipsis() {
|
@mixin ellipsis() {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow-x: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -171,9 +171,9 @@
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
line-height: 1.2em;
|
line-height: 1.3em;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-bottom: 4px;
|
margin-bottom: 3px;
|
||||||
@include ellipsis();
|
@include ellipsis();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue