mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-02-13 16:13:21 +01:00
44 lines
613 B
SCSS
44 lines
613 B
SCSS
@import '../../_variables.scss';
|
|
.notification {
|
|
padding: 0.5em;
|
|
padding-left: 1em;
|
|
display: flex;
|
|
border-bottom: 1px solid silver;
|
|
|
|
.text {
|
|
min-width: 0px;
|
|
word-wrap: break-word;
|
|
|
|
.icon-retweet {
|
|
color: $green;
|
|
}
|
|
|
|
.icon-reply {
|
|
color: $blue;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 1em;
|
|
}
|
|
|
|
padding-left: 0.5em;
|
|
p {
|
|
margin: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
}
|
|
|
|
.avatar {
|
|
padding-top: 3px;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&:last-child {
|
|
border: none
|
|
}
|
|
}
|