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