diff --git a/assets/css/app.scss b/assets/css/app.scss
index 94ebf38..845540a 100644
--- a/assets/css/app.scss
+++ b/assets/css/app.scss
@@ -299,12 +299,21 @@ input.form-control::-ms-reveal { display: none; }
 .form-control::placeholder { /* Most modern browsers support this now. */
   color:    $gray-500    !important;
 }
-.search-form .btn-outline-light {
-  color: $gray-300;
-  border-color: $gray-500;
+.search-form {
+  .btn {
+    padding: .25rem .75rem;
+    &.btn-outline-light {
+      color: $gray-300;
+      border-color: $gray-500;
+      &:hover {
+        color: $primary;
+        background-color: inherit;
+        border-color: $secondary;
+      }
+    }
+    .icon {
+      font-size: 1.375rem;
+      margin-top: 1px;
+    }
+  }
 }
-.search-form .btn-outline-light:hover {
-  color: $primary;
-  background-color: inherit;
-  border-color: $secondary;
-}
\ No newline at end of file