File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
javascripts/discourse/lib Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -277,12 +277,18 @@ html.composer-open .custom-homepage #main-outlet {
277
277
278
278
.btn-primary {
279
279
align-self : end ;
280
+ min-height : 2.5em ;
280
281
}
281
282
282
283
#custom-homepage-input {
283
284
width : 100% ;
284
285
margin : 0 ;
285
- min-height : 2.33em ;
286
+ resize : none ;
287
+ border-radius : var (--d-button-border-radius );
288
+ & :focus {
289
+ outline : none ;
290
+ border-color : var (--primary-high );
291
+ }
286
292
}
287
293
}
288
294
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default class SimpleTextareaInteractor {
23
23
refreshHeight ( ) {
24
24
schedule ( "afterRender" , ( ) => {
25
25
this . textarea . style . height = "auto" ;
26
- this . textarea . style . height = `${ this . textarea . scrollHeight + 1 } px` ;
26
+ this . textarea . style . height = `${ this . textarea . scrollHeight + 2 } px` ;
27
27
} ) ;
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments