Files
owncast/web/components/chat/ChatSocialMessage/ChatSocialMessage.module.scss
T
faisalmujawar148andGitHub 3aee02f7a8 Fix Fediverse chat action overflows (#4783)
* Fixed #4773

* Prettier'd and Eslinted the changes
2026-02-02 18:12:53 -08:00

72 lines
1.3 KiB
SCSS

.containerColumn {
position: relative;
max-width: 100%;
min-width: 1px;
display: grid;
}
.followerPadding {
padding: 0.5em;
}
.follower {
border-color: rgb(0 0 0 / 30%);
border-width: 1px;
border-style: solid;
padding: 10px;
border-radius: var(--theme-rounded-corners);
background-color: var(--theme-color-background-main);
&:hover {
border-color: var(--theme-text-link);
}
.avatar {
height: 60px;
width: 60px;
border-color: rgb(0 0 0 / 30%);
border-width: 1px;
border-style: solid;
font-size: 1.8rem;
}
.avatarColumn {
max-width: 75px;
min-width: 75px;
}
.body {
color: var(--theme-color-components-text-on-light);
text-overflow: ellipsis;
line-height: 1.2rem;
p {
margin: 0;
}
}
.account {
text-overflow: ellipsis;
font-family: var(--theme-text-display-font-family);
font-weight: 600;
color: var(--theme-color-components-text-on-light);
overflow: hidden;
display: inline-block;
white-space: nowrap;
}
.icon {
position: absolute;
width: 25px;
height: 25px;
top: 40px;
left: 40px;
border-color: var(--theme-color-background-main);
border-width: 2px;
border-style: solid;
border-radius: 50%;
background-size: cover;
background-position: center;
}
}