Skip to content

Commit 374157d

Browse files
committed
dark mode input color, button tweaks
1 parent 43d215d commit 374157d

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

components/Organization/ViewOrganization.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const ViewOrganization = ({ user, orgMembers, setOrgMembers, organization }: IPr
103103
? (
104104
<div className={style.leave_btn_ctn}>
105105
<div
106-
className={style.edit_btn}
106+
className={style.delete_btn}
107107
onClick={() => setOrgEdit('leave')}
108108
>
109109
Leave Organization

components/Organization/organization.module.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ body[data-theme="dark"] .org_ctn {
1010
background-color: var(--secondary-bg-color);
1111
}
1212

13+
body[data-theme="dark"] .org_ctn input {
14+
border-color: var(--gray)
15+
}
16+
1317
.org_ctn p {
1418
font-size: 16px;
1519
}
@@ -107,6 +111,11 @@ body[data-theme="dark"] .invite_link {
107111
border-color: #737373;
108112
}
109113

114+
body[data-theme="dark"] .edit_btn:hover,
115+
body[data-theme="dark"] .cancel_btn:hover {
116+
color: #000;
117+
}
118+
110119
.delete_btn {
111120
color: rgb(198, 0, 0);
112121
}
@@ -137,7 +146,8 @@ body[data-theme="dark"] .invite_link {
137146
margin-top: 40px;
138147
}
139148

140-
.leave_btn_ctn .edit_btn {
149+
.leave_btn_ctn .edit_btn,
150+
.leave_btn_ctn .delete_btn {
141151
display: inline-block;
142152
}
143153

0 commit comments

Comments
 (0)