10 lines
134 B
CSS
10 lines
134 B
CSS
/*
|
|
prevent character names from wrapping
|
|
*/
|
|
|
|
.character-name {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|