Fix margins on attendance buttons

This commit is contained in:
2020-01-18 07:54:17 +00:00
parent 3755969ead
commit f9c21b7001
2 changed files with 10 additions and 2 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ function AttendanceRow(props) {
});
return (
<div>
<div className='attendance-row'>
<p>{training.student_name}:</p>
<Button {...makeProps('withdrawn')}>
@@ -76,7 +76,7 @@ export function InstructorClassAttendance(props) {
{clazz.students.length ?
clazz.students.map(x =>
<p><AttendanceRow key={x.id} student={x} {...props} /></p>
<AttendanceRow key={x.id} student={x} {...props} />
)
:
<p>No students yet.</p>