Explorar el Código

fix className

Shun Miyazawa hace 2 años
padre
commit
0d75109434
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      apps/app/src/components/PageControls/SearchButton.tsx

+ 2 - 2
apps/app/src/components/PageControls/SearchButton.tsx

@@ -2,8 +2,8 @@ import React from 'react';
 
 const SearchButton = (): JSX.Element => {
   return (
-    <button type="button" className="btn">
-      <span className="material-symbols-outlined me-1">search</span>
+    <button type="button" className="btn border-0 d-flex align-items-center">
+      <span className="material-symbols-outlined">search</span>
     </button>
   );
 };