Skip to content

Commit 5249f52

Browse files
committed
Improve light theme
1 parent cc8f6b3 commit 5249f52

7 files changed

Lines changed: 290 additions & 51 deletions

File tree

app/javascript/mastodon/features/list_timeline/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,6 @@ class ListTimeline extends React.PureComponent {
175175
<Icon id='trash' /> <FormattedMessage id='lists.delete' defaultMessage='Delete list' />
176176
</button>
177177
</div>
178-
179-
<hr />
180178
</ColumnHeader>
181179

182180
<StatusListContainer

app/javascript/mastodon/features/lists/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ class Lists extends ImmutablePureComponent {
6565

6666
<NewListForm />
6767

68-
<ColumnSubheading text={intl.formatMessage(messages.subheading)} />
6968
<ScrollableList
7069
scrollKey='lists'
7170
shouldUpdateScroll={shouldUpdateScroll}
7271
emptyMessage={emptyMessage}
72+
prepend={<ColumnSubheading text={intl.formatMessage(messages.subheading)} />}
7373
>
7474
{lists.map(list =>
7575
<ColumnLink key={list.get('id')} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} />

0 commit comments

Comments
 (0)