fix(views): fix scrolling jank removing margin between desktop reply cards

This commit is contained in:
plebeius.eth
2023-09-26 20:18:17 +02:00
parent 67f7c52c40
commit 288ae4d066
4 changed files with 3 additions and 6 deletions
@@ -2412,7 +2412,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0;
}
hr {
@@ -2582,7 +2581,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0;
}
hr {
@@ -2755,7 +2753,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0
}
hr {
@@ -2926,7 +2923,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0
}
hr {
@@ -3106,7 +3102,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0
}
hr {
@@ -3281,7 +3276,6 @@ export const BoardForm = styled.div`
word-wrap: break-word;
word-break: break-word;
max-width: 100%;
margin: 4px 0
}
hr {
+1
View File
@@ -1960,6 +1960,7 @@ const All = () => {
)
) : null}
</div>
<div key={`spacer-fix-${index}`} style={{ height: '2px' }} />
</div>
);
})}
+1
View File
@@ -2993,6 +2993,7 @@ const Board = () => {
)
) : null}
</div>
<div key={`spacer-fix-${index}`} style={{ height: '2px' }} />
</div>
</Fragment>
);
+1
View File
@@ -1970,6 +1970,7 @@ const Subscriptions = () => {
)
) : null}
</div>
<div key={`spacer-fix-${index}`} style={{ height: '2px' }} />
</div>
);
})}