-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from VishalMinj/main
Feat: Added Card for level Wise issue solved
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<div class='d-flex justify-content-center gap-3 my-3'> | ||
<div class='px-5 py-3 fs-3 bg-white' style='width: 200px; border-radius: 7px;'> | ||
<h5>Total Issues Solved:</h5> | ||
<p> | ||
<strong>{{ totalProblemsSolved }}</strong> | ||
</p> | ||
</div> | ||
<div class='d-flex flex-column px-5 py-3 bg-white gap-3' style='border-radius: 7px;'> | ||
<div class='nav-item badge badge-pill badge-primary' role='presentation'> | ||
<a class='nav-link' style='border-radius: 7px;' id='easy-tab' role='tab' aria-controls='easy-tab' aria-selected='true'> | ||
<div class='text-center fs-6'> | ||
<b>Easy Problems :</b> | ||
<span>{{ easyProblems }}</span> | ||
</div> | ||
</a> | ||
</div> | ||
<div class='nav-item badge badge-pill badge-warning' role='presentation'> | ||
<a class='nav-link' style='border-radius: 7px;' id='medium-tab' role='tab' aria-controls='medium-tab' aria-selected='false'> | ||
<div class='text-center fs-6'> | ||
<b>Medium Problems :</b> | ||
<span>{{ mediumProblems }}</span> | ||
</div> | ||
</a> | ||
</div> | ||
<div class='nav-item badge badge-pill badge-danger' role='presentation'> | ||
<a class='nav-link' style='border-radius: 7px;' id='hard-tab' role='tab' aria-controls='hard-tab' aria-selected='false'> | ||
<div class='text-center fs-6'> | ||
<b>Hard Problems :</b> | ||
<span>{{ hardProblems }}</span> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters