File tree Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Expand file tree Collapse file tree 3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -232,7 +232,6 @@ const InputContainer = styled.div`
232
232
display: flex;
233
233
position: relative;
234
234
margin-bottom: ${ ( { theme } ) => theme . sizes . spaces . md } px;
235
- padding: 0 ${ ( { theme } ) => theme . sizes . spaces . df } px;
236
235
237
236
.comment__input__send_button {
238
237
position: absolute;
Original file line number Diff line number Diff line change @@ -87,9 +87,7 @@ function CommentManager({
87
87
users = { usersOrEmpty }
88
88
updateComment = { updateComment }
89
89
/>
90
- </ div >
91
- < div className = { 'thread__list__container__create__thread' } >
92
- < CommentInput
90
+ < CommentInput
93
91
placeholder = { 'Comment...' }
94
92
onSubmit = { async ( comment ) => {
95
93
await createThread ( { comment } )
@@ -221,15 +219,15 @@ const Container = styled.div`
221
219
flex-direction: column-reverse;
222
220
scrollbar-width: thin;
223
221
margin-bottom: ${ ( { theme } ) => theme . sizes . spaces . df } px;
222
+ padding: 0 ${ ( { theme } ) => theme . sizes . spaces . df } px;
224
223
225
224
.thread__content__back_button {
226
- margin: ${ ( { theme } ) => theme . sizes . spaces . df } px;
225
+ margin: ${ ( { theme } ) => theme . sizes . spaces . df } px 0 ;
227
226
}
228
227
229
228
& .comment__list {
230
229
& > div {
231
230
margin-bottom: ${ ( { theme } ) => theme . sizes . spaces . df } px;
232
- padding: 0 ${ ( { theme } ) => theme . sizes . spaces . df } px;
233
231
}
234
232
235
233
&:hover {
@@ -279,10 +277,7 @@ const Container = styled.div`
279
277
flex: 1;
280
278
height: 100%;
281
279
overflow-y: auto;
282
- }
283
-
284
- .thread__list__container__create__thread {
285
- margin-top: ${ ( { theme } ) => theme . sizes . spaces . df } px;
280
+ padding 0 ${ ( { theme } ) => theme . sizes . spaces . df } px;;
286
281
}
287
282
`
288
283
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ function ThreadList({
48
48
49
49
const Container = styled . div `
50
50
& > div {
51
- padding: 0 ${ ( { theme } ) => theme . sizes . spaces . df } px;
52
51
&:hover {
53
52
background-color: ${ ( { theme } ) => theme . colors . background . secondary } ;
54
53
}
You can’t perform that action at this time.
0 commit comments