Skip to content

Commit 0af477a

Browse files
committed
fix: update the font for confirmation dialog and user update text
1 parent 707b873 commit 0af477a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Pages/GlobalConfigurations/Authorization/UserPermissions/AddEdit/UserForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ const UserForm = ({ isAddMode, userData = null }: { isAddMode: boolean; userData
251251
try {
252252
await createOrUpdateUser(payload)
253253
if (isAddMode) {
254-
toast.success('User(s) created')
254+
toast.success('User(s) added')
255255
} else {
256256
currentK8sPermissionRef.current = [...k8sPermission].map(excludeKeyAndClusterValue)
257257
toast.success('User updated')

src/css/modal.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,14 @@
186186

187187
.confirmation-dialog__subtitle {
188188
font-size: 13px;
189-
color: var(--N700);
189+
color: var(--N800);
190+
line-height: 20px;
190191
}
191192

192193
.confirmation-dialog__button-group {
193194
margin-top: 32px;
194195
button {
195-
margin-left: 16px;
196+
margin-left: 12px;
196197
}
197198
}
198199

0 commit comments

Comments
 (0)