Skip to content

Commit 3f9d97c

Browse files
committed
Merge branch 'develop' into feat/sortable-cards
2 parents 3db892c + 266c64a commit 3f9d97c

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

src/assets/App.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,16 @@ a {
253253
cursor: pointer;
254254
position: relative;
255255
}
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+
}
256266
.blockHeader:hover .blockHeaderLink {
257267
opacity: 1;
258268
}

src/features/cards/components/rssCard/CustomRssCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function CustomRssCard({ meta, withAds }: CardPropsType) {
1515
const HeaderTitle = () => {
1616
return (
1717
<div style={{ display: 'inline-block', margin: 0, padding: 0 }}>
18-
<span> {meta.label} </span>
18+
<p className="maxTitle"> {meta.label} </p>
1919
</div>
2020
)
2121
}

0 commit comments

Comments
 (0)