mirror of
https://github.com/romancm/gamebrary
synced 2024-11-24 04:03:06 +00:00
Handle extra long list names
This commit is contained in:
parent
f76c7fd03b
commit
4d46a44f0a
1 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
<template lang="html">
|
||||
<div :class="['list', viewClass, { unique: unique && view !== 'grid' }]">
|
||||
<header>
|
||||
<span>
|
||||
<span class="list-name">
|
||||
<i
|
||||
v-if="autoSortEnabled"
|
||||
class="fas fa-magic"
|
||||
|
@ -289,6 +289,12 @@ export default {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.list-name {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.games {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
|
|
Loading…
Reference in a new issue