diff --git a/landing/info-block.css b/landing/info-block.css
--- a/landing/info-block.css
+++ b/landing/info-block.css
@@ -28,5 +28,5 @@
 .description {
   line-height: 1.5;
   font-weight: 400;
-  font-family: 'IBM Plex Sans';
+  font-family: 'IBM Plex Sans', sans-serif;
 }
diff --git a/landing/subscription-form.css b/landing/subscription-form.css
--- a/landing/subscription-form.css
+++ b/landing/subscription-form.css
@@ -6,11 +6,8 @@
   position: relative;
   width: auto;
   border: 1px solid white;
-  border-radius: 8px;
   border-left: none;
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-
+  border-radius: 0 8px 8px 0;
   padding-left: 20px;
   padding-right: 20px;
   cursor: pointer;
@@ -54,7 +51,6 @@
 
 input.email_input {
   flex: 1;
-  border-radius: 8px;
   padding: 20px;
 
   background: rgba(11, 18, 27, 0.25);
@@ -65,8 +61,7 @@
 
   border: 1px solid white;
   border-right: none;
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
+  border-radius: 8px 0 0 8px;
   outline: none;
   margin-inline: 0;
   transition: 300ms;
diff --git a/web/components/menu.css b/web/components/menu.css
--- a/web/components/menu.css
+++ b/web/components/menu.css
@@ -38,12 +38,10 @@
   background-color: transparent;
   padding: 12px 16px;
   line-height: 1.5;
-  background-color: transparent;
   border: none;
   cursor: pointer;
   display: flex;
   align-items: center;
-  color: inherit;
   font-size: inherit;
 }
 
diff --git a/web/theme.css b/web/theme.css
--- a/web/theme.css
+++ b/web/theme.css
@@ -126,7 +126,7 @@
   --app-list-icon-disabled-color: var(--shades-white-80);
   --account-settings-label: var(--shades-black-60);
   --account-button-color: var(--violet-dark-100);
-  --chat-thread-list-color-active: var(--shades-of-white-60);
+  --chat-thread-list-color-active: var(--shades-white-60);
   --chat-thread-list-menu-color: var(--shades-white-60);
   --chat-thread-list-menu-bg: var(--shades-black-80);
   --chat-thread-list-menu-active-color: var(--shades-white-60);