Skip to content

Commit

Permalink
Merge pull request #8 from rishi255/main
Browse files Browse the repository at this point in the history
Bump to v1.0.7
  • Loading branch information
rishi255 authored Jan 22, 2022
2 parents 2a6a9f7 + e5215f1 commit 4ea0c88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/chrome-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Kontest Reminder",
"version": "1.0.6",
"version": "1.0.7",
"description": "This extension will never let you forget about any coding contest",
"homepage_url": "https://nisarg0.github.io/Kontest-Reminder/",
"manifest_version": 2,
Expand Down
2 changes: 1 addition & 1 deletion public/firefox-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Kontest Reminder",
"version": "1.0.6",
"version": "1.0.7",
"description": "This extension will never let you forget about any coding contest",
"homepage_url": "https://nisarg0.github.io/Kontest-Reminder/",
"manifest_version": 2,
Expand Down
6 changes: 4 additions & 2 deletions src/components/MyContest.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export default function MyContest() {
};

return (
<div className="scrollbar-hidden">
<div className="Sections scrollbar-hidden">
<div>
<div className="Sections">
<Button
// variant="contained"
className="sections"
Expand Down Expand Up @@ -402,6 +402,8 @@ const setcolour = (contest) => {
for (let i = 0; i < AlarmContests.length; i++) {
if (AlarmContests[i].name === contest.name) {
c = "#ffe066";
} else {
c = "";
}
}
return c;
Expand Down

0 comments on commit 4ea0c88

Please sign in to comment.