Shun Miyazawa 2 лет назад
Родитель
Сommit
06fe80acc1
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      apps/app/src/components/PageControls/SearchButton.tsx

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

@@ -4,8 +4,8 @@ import styles from './SearchButton.module.scss';
 
 const SearchButton = (): JSX.Element => {
   return (
-    <button type="button" className={`me-3 btn border-0 d-flex align-items-center ${styles['btn-search']}`}>
-      <span className="material-symbols-outlined fill">search</span>
+    <button type="button" className={`me-3 btn btn-search ${styles['btn-search']}`}>
+      <span className="material-symbols-outlined">search</span>
     </button>
   );
 };