website
git clone https://git.pyrossh.dev/website
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
9e10714
— pyrossh
2026-07-07T15:04:29+05:30
fix: add CSS reset (box-sizing, margin, padding)
packages/shared/ui/src/css.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const globalCSS = `
|
|
2
|
+
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
|
|
2
3
|
:root {
|
|
3
4
|
--color-black: hsl(0, 0%, 0%);
|
|
4
5
|
--color-white: hsl(0, 0%, 100%);
|