├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler.yml ├── release-drafter.yml └── workflows │ ├── auto-assign-reply.yml │ ├── labeler.yml │ ├── publish-to-chrome.yml │ ├── release-drafter.yml │ └── sync-upstream.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Screenshot 2025-05-30 205822.png ├── biome.json ├── docs └── images │ ├── icon128x128.png │ ├── icon128x128.svg │ ├── old_icon.png │ ├── popup.png │ ├── popup2.png │ ├── scrum.png │ ├── scrumhelper-path.svg │ ├── scrumhelper-png.png │ ├── scrumhelper.svg │ ├── settings.png │ ├── standalone.png │ └── standalone2.png ├── image.png ├── package.json ├── src ├── _locales │ ├── de │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── hi │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── pt │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── vi │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ └── zh_TW │ │ └── messages.json ├── fontawesome │ ├── css │ │ └── all.min.css │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 ├── icons │ ├── icon.png │ ├── image copy.png │ ├── image.png │ ├── light-mode.png │ ├── night-mode.png │ ├── settings-light.png │ └── settings-night.png ├── index.css ├── manifest.json ├── materialize │ ├── css │ │ ├── all.min.css │ │ └── materialize.min.css │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── js │ │ └── materialize.min.js │ └── webfonts │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff2 │ │ ├── fa-v4compatibility.ttf │ │ └── fa-v4compatibility.woff2 ├── popup.html ├── scripts │ ├── emailClientAdapter.js │ ├── gitlabHelper.js │ ├── jquery-3.2.1.min.js │ ├── main.js │ ├── popup.js │ └── scrumHelper.js ├── scrum-helper-110925.zip ├── scrumStyle.css └── tailwindcss.css └── tailwind.config.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign-reply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/workflows/auto-assign-reply.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-chrome.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/workflows/publish-to-chrome.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/sync-upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/.github/workflows/sync-upstream.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot 2025-05-30 205822.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/Screenshot 2025-05-30 205822.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/biome.json -------------------------------------------------------------------------------- /docs/images/icon128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/icon128x128.png -------------------------------------------------------------------------------- /docs/images/icon128x128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/icon128x128.svg -------------------------------------------------------------------------------- /docs/images/old_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/old_icon.png -------------------------------------------------------------------------------- /docs/images/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/popup.png -------------------------------------------------------------------------------- /docs/images/popup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/popup2.png -------------------------------------------------------------------------------- /docs/images/scrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/scrum.png -------------------------------------------------------------------------------- /docs/images/scrumhelper-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/scrumhelper-path.svg -------------------------------------------------------------------------------- /docs/images/scrumhelper-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/scrumhelper-png.png -------------------------------------------------------------------------------- /docs/images/scrumhelper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/scrumhelper.svg -------------------------------------------------------------------------------- /docs/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/settings.png -------------------------------------------------------------------------------- /docs/images/standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/standalone.png -------------------------------------------------------------------------------- /docs/images/standalone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/docs/images/standalone2.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/_locales/hi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/hi/messages.json -------------------------------------------------------------------------------- /src/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/id/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/pt/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /src/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/ru/messages.json -------------------------------------------------------------------------------- /src/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/vi/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /src/fontawesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/css/all.min.css -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /src/fontawesome/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/fontawesome/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /src/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/icon.png -------------------------------------------------------------------------------- /src/icons/image copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/image copy.png -------------------------------------------------------------------------------- /src/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/image.png -------------------------------------------------------------------------------- /src/icons/light-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/light-mode.png -------------------------------------------------------------------------------- /src/icons/night-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/night-mode.png -------------------------------------------------------------------------------- /src/icons/settings-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/settings-light.png -------------------------------------------------------------------------------- /src/icons/settings-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/icons/settings-night.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/index.css -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/materialize/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/css/all.min.css -------------------------------------------------------------------------------- /src/materialize/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/css/materialize.min.css -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /src/materialize/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /src/materialize/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/js/materialize.min.js -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /src/materialize/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/materialize/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/scripts/emailClientAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/emailClientAdapter.js -------------------------------------------------------------------------------- /src/scripts/gitlabHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/gitlabHelper.js -------------------------------------------------------------------------------- /src/scripts/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/scripts/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/popup.js -------------------------------------------------------------------------------- /src/scripts/scrumHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scripts/scrumHelper.js -------------------------------------------------------------------------------- /src/scrum-helper-110925.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scrum-helper-110925.zip -------------------------------------------------------------------------------- /src/scrumStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/scrumStyle.css -------------------------------------------------------------------------------- /src/tailwindcss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/src/tailwindcss.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/scrum_helper/HEAD/tailwind.config.js --------------------------------------------------------------------------------