ソースを参照

updated subcmit button to outline-success

Abhinav-grd 4 年 前
コミット
800fdcbebc
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/components/SubmitButton.tsx

+ 1 - 1
src/components/SubmitButton.tsx

@@ -7,7 +7,7 @@ interface Props {
 }
 const SubmitButton = ({ loading, buttonText }: Props) => (
     <Button
-        variant="success"
+        variant="outline-success"
         type="submit"
         block
         disabled={loading}