-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Fix padding and alignment elements on quiz session header #197
Conversation
rbacordio
commented
Mar 15, 2024
- Fix horizontal padding on question counter
- Center question set name
- Add question set counter on Header
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved
<p className="text-white text-sm mb-2"> | ||
{metadata?.currentSetName} | ||
<p className="text-white text-sm mb-2 text-center"> | ||
{`(${metadata?.currentSetIndex}/${metadata?.totalNumberOfSets}) ${metadata?.currentSetName}`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ltgm
@@ -22,6 +22,8 @@ export default function Header() { | |||
{ volume: isMute ? 0 : volume / 100 } | |||
); | |||
|
|||
console.log(metadata); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe remove this in the future
removed the console.log(metadata)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTMAY!