We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3db892c + 266c64a commit 3f9d97cCopy full SHA for 3f9d97c
2 files changed
src/assets/App.css
@@ -253,6 +253,16 @@ a {
253
cursor: pointer;
254
position: relative;
255
}
256
+
257
+.blockHeader .maxTitle {
258
+ margin: 0;
259
+ padding: 0;
260
+ line-height: 13px;
261
+ white-space: nowrap;
262
+ overflow: hidden;
263
+ text-overflow: ellipsis;
264
+ max-width: 180px;
265
+}
266
.blockHeader:hover .blockHeaderLink {
267
opacity: 1;
268
src/features/cards/components/rssCard/CustomRssCard.tsx
@@ -15,7 +15,7 @@ export function CustomRssCard({ meta, withAds }: CardPropsType) {
15
const HeaderTitle = () => {
16
return (
17
<div style={{ display: 'inline-block', margin: 0, padding: 0 }}>
18
- <span> {meta.label} </span>
+ <p className="maxTitle"> {meta.label} </p>
19
</div>
20
)
21
0 commit comments