28 lines
401 B
SCSS
28 lines
401 B
SCSS
.student {
|
|
|
|
&__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
}
|
|
|
|
&__department {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&__clocked-in {
|
|
background-color: $green;
|
|
color: white;
|
|
padding: 0.5rem;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.attendance {
|
|
margin: 0 1rem;
|
|
|
|
&__month {
|
|
font-weight: bold;
|
|
}
|
|
}
|