diff options
| author | winter | 2025-01-19 15:55:27 +0000 |
|---|---|---|
| committer | winter | 2025-01-19 15:55:27 +0000 |
| commit | 77ba95515ed32c1a209ae341b4f716dbcd46f2a6 (patch) | |
| tree | c21fe8cada4a22c2c89f9d9e5755551f5be96c0b /static/profile.css | |
| parent | 3fe0b3e7938bdb3781fec13784c0b7f943a899c0 (diff) | |
sort out a bunch of text overflow issues
Diffstat (limited to 'static/profile.css')
| -rw-r--r-- | static/profile.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/static/profile.css b/static/profile.css index 6f7cec0..7783206 100644 --- a/static/profile.css +++ b/static/profile.css @@ -10,6 +10,11 @@ grid-template-columns: max-content 1fr max-content; gap: var(--spacing-double); + > * { + overflow: hidden; + text-overflow: ellipsis; + } + img.avatar { width: var(--avatar-big-size); aspect-ratio: 1; @@ -18,10 +23,14 @@ .displayName { font-size: var(--font-big-size); font-weight: bold; + text-overflow: ellipsis; + overflow: hidden; } .handle, .joinedDate { font-size: var(--font-small-size); + text-overflow: ellipsis; + overflow: hidden; } } |
