schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'main' into v4

willow ac65db76 750ff4d3

+31 -2
+15
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## [3.3.2](https://github.com/schooltape/schooltape/compare/v3.3.1...v3.3.2) (2025-04-29) 4 + 5 + 6 + ### Bug Fixes 7 + 8 + * **theme:** article text and link styling ([#223](https://github.com/schooltape/schooltape/issues/223)) ([616e560](https://github.com/schooltape/schooltape/commit/616e5608c6da4a4de5176d13f2a4e92d1a9351d7)) 9 + 10 + ## [3.3.1](https://github.com/schooltape/schooltape/compare/v3.3.0...v3.3.1) (2025-04-07) 11 + 12 + 13 + ### Bug Fixes 14 + 15 + * news text styling ([#219](https://github.com/schooltape/schooltape/issues/219)) ([d378126](https://github.com/schooltape/schooltape/commit/d378126f91b57c3d31bfb0dd98fb9a8f9d1ef453)) 16 + * **theme:** news paragraph styling ([#221](https://github.com/schooltape/schooltape/issues/221)) ([6f87fc9](https://github.com/schooltape/schooltape/commit/6f87fc9047774bcc8c321cd0b4ef42ec7419bcbf)) 17 + 3 18 ## [3.3.0](https://github.com/schooltape/schooltape/compare/v3.2.13...v3.3.0) (2025-03-12) 4 19 5 20
bun.lockb

This is a binary file and will not be displayed.

+2 -2
package.json
··· 1 1 { 2 2 "name": "schooltape", 3 - "version": "3.3.0", 3 + "version": "3.3.2", 4 4 "author": "42willow", 5 5 "homepage": "https://schooltape.github.io", 6 6 "devDependencies": { ··· 15 15 "eslint": "^9.27.0", 16 16 "eslint-plugin-svelte": "^3.9.0", 17 17 "globals": "^16.1.0", 18 - "lucide-svelte": "^0.475.0", 18 + "lucide-svelte": "^0.507.0", 19 19 "pino": "^9.7.0", 20 20 "postcss": "^8.5.3", 21 21 "prettier": "^3.5.3",
+14
src/entrypoints/catppuccin.css
··· 475 475 background-color: hsl(var(--ctp-base)); 476 476 } 477 477 478 + article a { 479 + background-color: transparent !important; 480 + color: hsl(var(--ctp-accent)) !important; 481 + } 482 + 483 + article a:hover { 484 + text-decoration: underline !important; 485 + } 486 + 487 + article *:not(a):not(a *) { 488 + background-color: transparent !important; 489 + color: hsl(var(--ctp-text)) !important; 490 + } 491 + 478 492 /* home -> news */ 479 493 .tabs { 480 494 background: hsl(var(--ctp-surface1));