Improve scrolling desynchronization
https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/749
This commit is contained in:
parent
df0fb5ae58
commit
ce7eb29e1c
|
@ -337,15 +337,9 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
margin-top: -10px;
|
|
||||||
|
|
||||||
.column-back-button {
|
.column-back-button {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
margin-bottom: -10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.slist {
|
|
||||||
margin-top: -10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.account__section-headline {
|
.account__section-headline {
|
||||||
|
|
|
@ -132,20 +132,6 @@
|
||||||
padding: 15px 0 10px;
|
padding: 15px 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.slist > .item-list > article {
|
|
||||||
&:first-child {
|
|
||||||
.status__wrapper {
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
.status__wrapper {
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.status__wrapper--filtered {
|
.status__wrapper--filtered {
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 10px;
|
||||||
|
|
||||||
.compose-form {
|
.compose-form {
|
||||||
flex: 1 1;
|
flex: 1 1;
|
||||||
|
@ -174,6 +174,10 @@
|
||||||
border-left: 11px solid transparent;
|
border-left: 11px solid transparent;
|
||||||
left: -22px;
|
left: -22px;
|
||||||
top: 13px;
|
top: 13px;
|
||||||
|
|
||||||
|
@media (max-width: 405px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.autosuggest-textarea__textarea {
|
.autosuggest-textarea__textarea {
|
||||||
|
@ -744,3 +748,9 @@
|
||||||
background: var(--accent-color);
|
background: var(--accent-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create a new Block Formatting Context to prevent the timelines from jumping
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Block_formatting_context
|
||||||
|
.slist > .item-list > article {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue