tangled
alpha
login
or
join now
witchcraft.systems
/
pds-dash
15
fork
atom
this repo has no description
15
fork
atom
overview
issues
pulls
pipelines
Proper display name wrapping
astrra.space
10 months ago
79d5694d
abeaa860
verified
This commit was signed with the committer's
known signature
.
astrra.space
SSH Key Fingerprint:
SHA256:jQDNS75/33T59Ey4yAzrUPP/5YQaXEetsW8hwUae+ag=
+9
1 changed file
expand all
collapse all
unified
split
src
lib
PostComponent.svelte
+9
src/lib/PostComponent.svelte
···
170
170
height: 60px;
171
171
}
172
172
#displayName {
173
173
+
display: block;
173
174
color: var(--text-color);
174
175
font-size: 1.2em;
175
176
padding: 0;
176
177
margin: 0;
178
178
+
overflow-wrap:normal;
179
179
+
word-wrap: break-word;
180
180
+
word-break: break-word;
181
181
+
text-overflow: ellipsis;
182
182
+
overflow: hidden;
183
183
+
white-space: nowrap;
184
184
+
width: 100%;
177
185
}
178
186
#handle {
187
187
+
display: block;
179
188
color: var(--border-color);
180
189
font-size: 0.8em;
181
190
padding: 0;