diff --git a/src/components/common/messaging/MessageBox.tsx b/src/components/common/messaging/MessageBox.tsx
index fe323b1538e73ddc1e6a8aae3a96fc92c790b0c0..8a00fbea589879e8e31816a0cc7d419c48b2f670 100644
--- a/src/components/common/messaging/MessageBox.tsx
+++ b/src/components/common/messaging/MessageBox.tsx
@@ -61,7 +61,7 @@ export type UploadState =
 
 const Base = styled.div`
     display: flex;
-    padding: 0 12px;
+    /*padding: 0 12px;*/
     background: var(--message-box);
 
     textarea {
@@ -87,6 +87,10 @@ const Blocked = styled.div`
 const Action = styled.div`
     display: grid;
     place-items: center;
+
+    > div {
+        padding: 10px 12px;
+    }
 `;
 
 // ! FIXME: add to app config and load from app config
diff --git a/src/components/ui/ComboBox.tsx b/src/components/ui/ComboBox.tsx
index a02c1f4f63cc4825d19adc378661a12af57d3ce1..5d5c796308ac92f1b9855dfe7c7d4f23bce62205 100644
--- a/src/components/ui/ComboBox.tsx
+++ b/src/components/ui/ComboBox.tsx
@@ -1,7 +1,7 @@
 import styled from "styled-components";
 
 export default styled.select`
-    padding: 8px;
+    padding: 10px;
     border-radius: 6px;
     font-family: inherit;
     color: var(--secondary-foreground);
@@ -10,11 +10,11 @@ export default styled.select`
     border: none;
     outline: 2px solid transparent;
     transition: outline-color 0.2s ease-in-out;
-    transition: box-shadow 0.3s;
+    transition: box-shadow .2s ease-in-out;
     cursor: pointer;
     width: 100%;
 
     &:focus {
-        box-shadow: 0 0 0 2pt var(--accent);
+        box-shadow: 0 0 0 1.5pt var(--accent);
     }
 `;
diff --git a/src/components/ui/InputBox.tsx b/src/components/ui/InputBox.tsx
index a791edd7a92cb8f6be9a1925183e71769e8b2a0c..70e9cd9a49b0f7b17e023bb236388be33946ce1c 100644
--- a/src/components/ui/InputBox.tsx
+++ b/src/components/ui/InputBox.tsx
@@ -8,6 +8,7 @@ export default styled.input<Props>`
     z-index: 1;
     padding: 8px 16px;
     border-radius: 6px;
+    font-size: 1rem;
 
     font-family: inherit;
     color: var(--foreground);
@@ -17,13 +18,14 @@ export default styled.input<Props>`
     border: none;
     outline: 2px solid transparent;
     transition: outline-color 0.2s ease-in-out;
+    transition: box-shadow .2s ease-in-out;
 
     &:hover {
         background: var(--secondary-background);
     }
 
     &:focus {
-        outline: 2px solid var(--accent);
+        box-shadow: 0 0 0 1.5pt var(--accent);
     }
 
     ${(props) =>
diff --git a/src/components/ui/TextArea.module.scss b/src/components/ui/TextArea.module.scss
index 7e009fd5e31b223f0785d87377f7d7b9de94b617..b6e1ab0f4cf7b9d71cd9676170a940147ae626d0 100644
--- a/src/components/ui/TextArea.module.scss
+++ b/src/components/ui/TextArea.module.scss
@@ -1,5 +1,5 @@
 .container {
-    font-size: 0.875rem;
+    font-size: .875rem;
     line-height: 20px;
     position: relative;
 }
diff --git a/src/context/intermediate/popovers/UserProfile.tsx b/src/context/intermediate/popovers/UserProfile.tsx
index 653a6ee622590633deb4cdccf5b431587a8e7fa4..191b963d9cb9fa1454af2c8ab66a783b3eaafee0 100644
--- a/src/context/intermediate/popovers/UserProfile.tsx
+++ b/src/context/intermediate/popovers/UserProfile.tsx
@@ -2,9 +2,9 @@ import {
     Envelope,
     Edit,
     UserPlus,
-    Shield,
-    Money,
-} from "@styled-icons/boxicons-regular";
+    Shield
+} from "@styled-icons/boxicons-solid";
+import { Money } from "@styled-icons/boxicons-regular";
 import { Link, useHistory } from "react-router-dom";
 import { Users } from "revolt.js/dist/api/objects";
 import { UserPermission } from "revolt.js/dist/api/permissions";
diff --git a/src/pages/settings/panes/Panes.module.scss b/src/pages/settings/panes/Panes.module.scss
index 2b40d279797e66d5e81f1f951d7bb7c746234e1e..34108c12461e94c4ed525e11fe101d7002a9a26f 100644
--- a/src/pages/settings/panes/Panes.module.scss
+++ b/src/pages/settings/panes/Panes.module.scss
@@ -312,7 +312,7 @@
         }
 
         .label {
-            margin: 0 0 6px 0;
+            margin-bottom: 8px;
             color: var(--primary-text);
             font-size: 12px;
             font-weight: 600;
diff --git a/src/pages/settings/server/Panes.module.scss b/src/pages/settings/server/Panes.module.scss
index 8c1a2091dfb5f162bbd2d69d79b28eed73ffb9b8..93ca2cc379d65ad244ac2ef67e9a97c697ffb9ff 100644
--- a/src/pages/settings/server/Panes.module.scss
+++ b/src/pages/settings/server/Panes.module.scss
@@ -6,6 +6,10 @@
         .name {
             flex-grow: 1;
 
+            h3 {
+                margin-top: 0;
+            }
+
             input {
                 width: 100%;
             }