Skip to content

Commit 42c6f03

Browse files
remove outline of buttons in profile ui
1 parent a9d6bc2 commit 42c6f03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/OpenSign/src/routes/UserProfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function UserProfile() {
247247
<button
248248
type="button"
249249
onClick={handleSubmit}
250-
className="rounded bg-white border-[1px] border-[#15b4e9] text-[#15b4e9] px-4 py-2 mr-4"
250+
className="rounded shadow focus:outline-none border-[2px] border-[#15b4e9] bg-white text-[#15b4e9] px-4 py-2 mr-4"
251251
>
252252
Save
253253
</button>
@@ -257,7 +257,7 @@ function UserProfile() {
257257
onClick={() => {
258258
setEditMode(true);
259259
}}
260-
className="rounded shadow text-white bg-[#e7505a] px-4 py-2 mr-4"
260+
className="rounded shadow focus:outline-none text-white bg-[#e7505a] px-4 py-2 mr-4"
261261
>
262262
Edit
263263
</button>
@@ -271,7 +271,7 @@ function UserProfile() {
271271
navigate("/changepassword");
272272
}
273273
}}
274-
className={`rounded shadow text-white bg-[#3598dc] ${
274+
className={`rounded shadow focus:outline-none text-white bg-[#3598dc] ${
275275
editmode ? "px-4 py-2 " : "p-2"
276276
}`}
277277
>

0 commit comments

Comments
 (0)