Add border to top of add-user-note button (#39)

This commit is contained in:
Jordan Vidrine 2021-08-03 09:43:48 -05:00 committed by GitHub
parent 36f8929634
commit 737f3fdb0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -90,6 +90,7 @@ export default {
label: "user_notes.attach",
action: "showUserNotes",
secondaryAction: "closeAdminMenu",
className: "add-user-note",
})
);
});

View File

@ -82,3 +82,7 @@
}
}
}
.add-user-note {
border-top: 1px solid rgba(var(--primary-low-rgb), 0.5);
}