diff --git a/web/modals/threads/thread-settings-modal.css b/web/modals/threads/thread-settings-modal.css --- a/web/modals/threads/thread-settings-modal.css +++ b/web/modals/threads/thread-settings-modal.css @@ -1,8 +1,4 @@ div.modal_body { - padding: 20px; - background-color: var(--modal-bg); - border-radius: 16px; - flex: 1; display: flex; flex-direction: column; } @@ -11,6 +7,9 @@ font-size: 14px; text-align: center; } +div.tab_body { + padding: 20px; +} div.modal_form_error { display: flex; justify-content: center; diff --git a/web/modals/threads/thread-settings-modal.react.js b/web/modals/threads/thread-settings-modal.react.js --- a/web/modals/threads/thread-settings-modal.react.js +++ b/web/modals/threads/thread-settings-modal.react.js @@ -111,14 +111,16 @@ const tabs = [ - +
+ +
, ]; @@ -134,13 +136,15 @@ if (canSeePrivacyTab) { tabs.push( - +
+ +
, ); } @@ -149,11 +153,13 @@ if (canDeleteThread) { tabs.push( - +
+ +
, ); }