9 lines
96 B
CSS
9 lines
96 B
CSS
|
/**
|
||
|
* @file
|
||
|
* Utility class to prevent text wrapping.
|
||
|
*/
|
||
|
|
||
|
.nowrap {
|
||
|
white-space: nowrap;
|
||
|
}
|