Settings: Fix some text overflows (#3369)
This commit is contained in:
parent
f9a789a2cc
commit
6a47d14388
@ -138,6 +138,7 @@
|
|||||||
&.no-border {
|
&.no-border {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-header {
|
&-header {
|
||||||
@ -268,6 +269,10 @@
|
|||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.contact-info {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.contact-name {
|
.contact-name {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1rem;
|
line-height: 1rem;
|
||||||
|
|||||||
@ -121,7 +121,7 @@ const SettingsPrivacyBlockedUsers: FC<OwnProps & StateProps> = ({
|
|||||||
|
|
||||||
<div className="chat-list custom-scroll">
|
<div className="chat-list custom-scroll">
|
||||||
{blockedIds?.length ? (
|
{blockedIds?.length ? (
|
||||||
<div className="scroll-container">
|
<div className="scroll-container settings-item">
|
||||||
{blockedIds!.map((contactId, i) => renderContact(contactId, i, 0))}
|
{blockedIds!.map((contactId, i) => renderContact(contactId, i, 0))}
|
||||||
</div>
|
</div>
|
||||||
) : blockedIds && !blockedIds.length ? (
|
) : blockedIds && !blockedIds.length ? (
|
||||||
|
|||||||
@ -15,6 +15,7 @@
|
|||||||
.ChatInfo {
|
.ChatInfo {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
.Avatar {
|
.Avatar {
|
||||||
margin-left: -0.25rem;
|
margin-left: -0.25rem;
|
||||||
@ -38,6 +39,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.status {
|
.status {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user