diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2017-10-19 12:28:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-19 12:28:47 -0400 |
commit | f5e2469485a632ac55c02214e8b4ff476108d8f4 (patch) | |
tree | 564d32ccf5c209d902b0ef5a713d1476576576a9 /app | |
parent | 90770f6d59624f8f1d8e43fa9f86ab92f130ee8b (diff) | |
parent | 9423553e5cbf49d1090adce9d525028c26e30133 (diff) |
Merge pull request #189 from glitch-soc/scrollable-compose-area
Make the compose area optionally scrollable
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/compose/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/compose/index.js b/app/javascript/mastodon/features/compose/index.js index 41a97d550..a487f2c89 100644 --- a/app/javascript/mastodon/features/compose/index.js +++ b/app/javascript/mastodon/features/compose/index.js @@ -105,7 +105,7 @@ export default class Compose extends React.PureComponent { <SearchContainer /> <div className='drawer__pager'> - <div className='drawer__inner' onFocus={this.onFocus}> + <div className='drawer__inner scrollable optionally-scrollable' onFocus={this.onFocus}> <NavigationContainer onClose={this.onBlur} /> <ComposeFormContainer /> </div> |