mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
larger hovers on lectures
This commit is contained in:
@@ -52,7 +52,18 @@ export function DayTitle({ day, dayAsDate }: { day: string; dayAsDate: Date }) {
|
||||
<ClientOnly>
|
||||
{(lectureName?.length ?? 0) > 0 && (
|
||||
<Tooltip
|
||||
message={lectureName}
|
||||
message={
|
||||
<div>
|
||||
{lectureName}
|
||||
{todaysLecture?.content && (
|
||||
<>
|
||||
<pre>
|
||||
<code>{todaysLecture?.content}</code>
|
||||
</pre>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
}
|
||||
targetRef={linkRef}
|
||||
visible={tooltipVisible}
|
||||
/>
|
||||
|
||||
@@ -62,7 +62,9 @@ short answer
|
||||
---
|
||||
this is a matching question
|
||||
^ left answer - right dropdown
|
||||
^ other thing - another option`;
|
||||
^ other thing - another option
|
||||
^ - distractor
|
||||
^ - other distractor`;
|
||||
};
|
||||
|
||||
export default function EditQuiz({
|
||||
|
||||
Reference in New Issue
Block a user