Skip to content

Commit

Permalink
more teacher swag
Browse files Browse the repository at this point in the history
  • Loading branch information
mariansam committed Jun 21, 2023
1 parent 3a58067 commit 100527f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/team-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ export const TeamView: React.FC<TeamProps> = props => {
}, [members]);

return (
<Card className='my-3'>
<Card className={team.teachers ? 'border border-warning border-4 my-3' : 'my-3'}>
<Card.Header as="h5">{team.name}</Card.Header>
<Card.Body className='pb-0'>
<Card.Body bg={team.teachers ? 'warning' : undefined} className='pb-0'>
<Table>
<tbody>
{members.map((member, idx) => (
Expand Down

0 comments on commit 100527f

Please sign in to comment.