s p a c i n g fixes
This commit is contained in:
parent
eac5acdea8
commit
9fe8465d90
|
@ -363,7 +363,7 @@ function readPromo() {
|
||||||
padding: 0 32px 0 32px;
|
padding: 0 32px 0 32px;
|
||||||
display: flex;
|
display: flex;
|
||||||
&:first-child {
|
&:first-child {
|
||||||
margin-top: 15px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
> :not(.line) {
|
> :not(.line) {
|
||||||
width: 0;
|
width: 0;
|
||||||
|
@ -639,7 +639,7 @@ function readPromo() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
> .article {
|
> .article {
|
||||||
padding: 14px 16px 9px;
|
padding: 16px 16px 9px;
|
||||||
|
|
||||||
> .main > .header-container > .avatar {
|
> .main > .header-container > .avatar {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
|
@ -345,6 +345,9 @@ if (appearNote.replyId) {
|
||||||
> .reply-to-more {
|
> .reply-to-more {
|
||||||
// opacity: 0.7;
|
// opacity: 0.7;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
&:first-child {
|
||||||
|
padding-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
@media (pointer: coarse) {
|
@media (pointer: coarse) {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
@ -419,6 +422,7 @@ if (appearNote.replyId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
> .body {
|
> .body {
|
||||||
|
width: 0;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -427,8 +431,12 @@ if (appearNote.replyId) {
|
||||||
font-size: 0.95em;
|
font-size: 0.95em;
|
||||||
|
|
||||||
> .top {
|
> .top {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
> .name {
|
> .name {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
> .is-bot {
|
> .is-bot {
|
||||||
|
@ -566,6 +574,10 @@ if (appearNote.replyId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
&.max-width_450px {
|
&.max-width_450px {
|
||||||
|
|
||||||
|
> .reply-to-more:first-child {
|
||||||
|
padding-top: 14px;
|
||||||
|
}
|
||||||
> .renote {
|
> .renote {
|
||||||
padding: 8px 16px 0 16px;
|
padding: 8px 16px 0 16px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,10 +75,10 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
> .avatar-container {
|
> .avatar-container {
|
||||||
|
margin-right: 8px;
|
||||||
> .avatar {
|
> .avatar {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 8px 0 0;
|
|
||||||
width: 38px;
|
width: 38px;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
@ -132,6 +132,7 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
||||||
}
|
}
|
||||||
|
|
||||||
&.reply-to:first-child {
|
&.reply-to:first-child {
|
||||||
|
padding-top: 30px;
|
||||||
> .main {
|
> .main {
|
||||||
> .avatar-container .avatar, > .body {
|
> .avatar-container .avatar, > .body {
|
||||||
opacity: .8;
|
opacity: .8;
|
||||||
|
@ -164,7 +165,7 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item
|
||||||
}
|
}
|
||||||
|
|
||||||
&.max-width_450px {
|
&.max-width_450px {
|
||||||
padding: 14px 16px;
|
padding: 14px 16px !important;
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
> .main > .avatar-container {
|
> .main > .avatar-container {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
Loading…
Reference in New Issue