Updated the timer to be on the Navbar, making it more mobile friendly

This commit is contained in:
Tiago Ribeiro
2023-04-17 18:42:28 +01:00
parent 378b6b1693
commit 13c8fae588
8 changed files with 31 additions and 78 deletions

View File

@@ -7,7 +7,7 @@ interface Props {
progressBarWidth?: string;
}
export default function LevelProgressBar({experience, className, progressBarWidth = "w-64"}: Props) {
export default function LevelProgressBar({experience, className, progressBarWidth = "w-32 md:w-64"}: Props) {
const levelResult = levelCalculator(experience);
return (