diff --git a/app/soapbox/features/list_adder/index.js b/app/soapbox/features/list_adder/index.js
index 7df28d07f..7b7a6fb55 100644
--- a/app/soapbox/features/list_adder/index.js
+++ b/app/soapbox/features/list_adder/index.js
@@ -6,16 +6,15 @@ import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
-import IconButton from 'soapbox/components/icon_button';
+import { setupListAdder, resetListAdder } from 'soapbox/actions/lists';
+import { CardHeader, CardTitle, Modal } from 'soapbox/components/ui';
-import { setupListAdder, resetListAdder } from '../../actions/lists';
import NewListForm from '../lists/components/new_list_form';
-import ColumnSubheading from '../ui/components/column_subheading';
import Account from './components/account';
import List from './components/list';
-// hack
+// hack
const getOrderedLists = createSelector([state => state.get('lists')], lists => {
if (!lists) {
return lists;
@@ -72,13 +71,10 @@ class ListAdder extends ImmutablePureComponent {
const { accountId, listIds, intl } = this.props;
return (
-
-
-
-
-
-
-
+ }
+ onClose={this.onClickClose}
+ >
@@ -87,18 +83,22 @@ class ListAdder extends ImmutablePureComponent {
-
+
+
+
-
+
+
+
{listIds.map(ListId =>
)}
-
+
);
}
diff --git a/app/soapbox/features/list_editor/index.js b/app/soapbox/features/list_editor/index.js
index 913cbfe50..82c943d21 100644
--- a/app/soapbox/features/list_editor/index.js
+++ b/app/soapbox/features/list_editor/index.js
@@ -6,9 +6,7 @@ import { injectIntl, defineMessages, FormattedMessage } from 'react-intl';
import { connect } from 'react-redux';
import { setupListEditor, clearListSuggestions, resetListEditor } from 'soapbox/actions/lists';
-import { Modal } from 'soapbox/components/ui';
-
-import ColumnSubheading from '../ui/components/column_subheading';
+import { CardHeader, CardTitle, Modal } from 'soapbox/components/ui';
import Account from './components/account';
import EditListForm from './components/edit_list_form';
@@ -72,14 +70,18 @@ class ListEditor extends ImmutablePureComponent {
>
-
+
+
+
{
accountIds.size > 0 &&
-
+
+
+
{accountIds.map(accountId =>
)}
@@ -87,7 +89,9 @@ class ListEditor extends ImmutablePureComponent {
}
-
+
+
+
{searchAccountIds.map(accountId =>
)}
diff --git a/app/styles/components/modal.scss b/app/styles/components/modal.scss
index 728044af3..0b2e8ddba 100644
--- a/app/styles/components/modal.scss
+++ b/app/styles/components/modal.scss
@@ -709,9 +709,6 @@
display: flex;
flex-direction: row;
flex: 1;
- padding: 10px;
- padding-left: max(10px, env(safe-area-inset-left));
- padding-right: max(10px, env(safe-area-inset-right));
overflow-y: hidden;
&--scroll {