don't allow relative dates to wrap

This commit is contained in:
Jeff Atwood 2016-02-06 14:22:46 -08:00
parent 9a83100529
commit d81728f70d

View File

@ -219,3 +219,17 @@ body {
display: inline-block;
}
}
// don't wrap relative dates, we want
//
// Jul 26, '15
//
// not
//
// Jul
// 26,
// '15
//
span.relative-date {
white-space:nowrap;
}