-
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 #185 from VishalMinj/main
Update: Added very-easy problem list
- Loading branch information
Showing
3 changed files
with
41 additions
and
3 deletions.
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,27 @@ | ||
<div class='d-flex justify-content-center gap-3 mb-4 flex-wrap'> | ||
<div class='px-5 py-3 fs-1 bg-white align-content-center' style='width: 200px; border-radius: 7px;'> <!-- Left column for total problems --> | ||
<h5>Total Issues Solved:</h5> | ||
<p> | ||
|
||
<div>{{ totalProblemsSolved }}</div> | ||
</p> | ||
</div> | ||
|
||
<div class='d-flex flex-column p-3 bg-white' style='border-radius: 7px; height: 100%;'> | ||
<div class="d-flex flex-column flex-grow-1 gap-1 "> | ||
<div class="w-100 badge badge-pill flex-grow-1 align-content-center" style="background-color: #33b5e5; padding: .75rem 3rem;"> | ||
<div class="box fs-6">Very-easy Issue.: {{ veasyProblems }}</div> | ||
</div> | ||
<div class="w-100 badge badge-pill flex-grow-1 align-content-center" style="background-color: #00b74a; padding: .75rem 3rem;"> | ||
<div class="box fs-6">Easy Issue: {{ easyProblems }}</div> | ||
</div> | ||
<div class="w-100 badge badge-pill flex-grow-1 align-content-center" style="background-color: #ffa900; padding: .75rem 3rem;"> | ||
<div class="box fs-6">Medium Issue: {{ mediumProblems }}</div> | ||
</div> | ||
<div class="w-100 badge badge-pill flex-grow-1 align-content-center" style="background-color: #ff3547; padding: .75rem 3rem;"> | ||
<div class="box fs-6">Hard Issue: {{ hardProblems }}</div> | ||
</div> | ||
</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