Skip to content

Commit

Permalink
add: add margin bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
domysh committed Oct 23, 2024
1 parent 89cb9cf commit f560bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/react/pages/app/QuizList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const QuizList = () => {
const queryClient = useQueryClient()
const filteredQuizzes = quizzes.data?.filter(q => filterSelected == "all" || q.type == filterSelected)

return <div className="h-full">
return <div className="h-full mb-5">
<TitleBar title="Quizzes" actions={[
<Button className="btn-circle mr-4" onClick={() => queryClient.invalidateQueries()} loading={quizzes.isFetching}>
{ !quizzes.isFetching && <TbReload size={32} /> }
Expand Down

0 comments on commit f560bf2

Please sign in to comment.