diff --git a/app/soapbox/features/account_timeline/components/moved_note.js b/app/soapbox/features/account_timeline/components/moved_note.js
index b3c2cae13..44a68040c 100644
--- a/app/soapbox/features/account_timeline/components/moved_note.js
+++ b/app/soapbox/features/account_timeline/components/moved_note.js
@@ -26,7 +26,7 @@ export default class MovedNote extends ImmutablePureComponent {
return (
diff --git a/app/soapbox/features/compose/components/poll_form.js b/app/soapbox/features/compose/components/poll_form.js
index 81a5a37e3..8b8edc9fa 100644
--- a/app/soapbox/features/compose/components/poll_form.js
+++ b/app/soapbox/features/compose/components/poll_form.js
@@ -178,7 +178,7 @@ class PollForm extends ImmutablePureComponent {
{options.size < maxOptions && (
-
+
)}
))
@@ -347,7 +347,7 @@ class EditProfile extends ImmutablePureComponent {
this.state.fields.size < maxFields && (
diff --git a/app/soapbox/features/notifications/components/clear_column_button.js b/app/soapbox/features/notifications/components/clear_column_button.js
index 4218f662d..bbf0e99bf 100644
--- a/app/soapbox/features/notifications/components/clear_column_button.js
+++ b/app/soapbox/features/notifications/components/clear_column_button.js
@@ -11,7 +11,7 @@ export default class ClearColumnButton extends React.PureComponent {
render() {
return (
-
+
);
}
diff --git a/app/soapbox/features/soapbox_config/index.js b/app/soapbox/features/soapbox_config/index.js
index b3537e488..e3e8d93b6 100644
--- a/app/soapbox/features/soapbox_config/index.js
+++ b/app/soapbox/features/soapbox_config/index.js
@@ -318,13 +318,13 @@ class SoapboxConfig extends ImmutablePureComponent {
value={field.get('url')}
onChange={this.handlePromoItemChange(i, 'url', field)}
/>
-
+
))
}
-
+
diff --git a/app/styles/components/columns.scss b/app/styles/components/columns.scss
index ca9cc1d00..233e61e64 100644
--- a/app/styles/components/columns.scss
+++ b/app/styles/components/columns.scss
@@ -746,6 +746,15 @@
.column-settings__row {
.text-btn {
margin-bottom: 15px;
+
+ &.column-header__setting-btn {
+ display: flex;
+ align-items: center;
+
+ .svg-icon {
+ margin-right: 10px;
+ }
+ }
}
}
diff --git a/app/styles/forms.scss b/app/styles/forms.scss
index b28676a32..09386a6b3 100644
--- a/app/styles/forms.scss
+++ b/app/styles/forms.scss
@@ -741,17 +741,19 @@ code {
}
}
-.input .row > .fa-times-circle {
+.input .row > .svg-icon.delete-field {
+ height: 20px;
+ width: 20px;
position: absolute;
- right: 15px;
+ right: 13px;
cursor: pointer;
color: $error-red;
- transform: translateY(-9px);
+ transform: translateY(-11px);
}
-.input .row > .input.with_label + .fa-times-circle {
- right: 7px;
- transform: translateY(9px);
+.input .row > .input.with_label + .svg-icon.delete-field {
+ right: 5px;
+ transform: translateY(7px);
}
.site-preview {
@@ -798,12 +800,19 @@ code {
margin: 10px 0 0;
.button {
+ display: flex;
+ align-items: center;
border: 0;
background: transparent;
&:hover {
color: var(--primary-text-color);
}
+
+ .svg-icon {
+ height: 20px;
+ width: 20px;
+ }
}
}