Skip to content

Commit 132e8dd

Browse files
committed
Implement global css
1 parent fc8ddbf commit 132e8dd

File tree

85 files changed

+2446
-1503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+2446
-1503
lines changed

.changeset/large-clubs-strive.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@devup-ui/rsbuild-plugin": patch
3+
"@devup-ui/webpack-plugin": patch
4+
"@devup-ui/next-plugin": patch
5+
"@devup-ui/vite-plugin": patch
6+
---
7+
8+
Change temp dir

.changeset/little-ways-sneeze.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@devup-ui/wasm": patch
3+
---
4+
5+
Implement globalCss, Fix ?? operator issue

.changeset/tidy-buses-float.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@devup-ui/react": patch
3+
---
4+
5+
Add globalCss

.df/devup-ui.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ node_modules
66
target
77
*.*.timestamp-*
88
coverage
9-
.df
109
build_rs_cov.profraw
1110
tsconfig.tsbuildinfo
1211
codecov

Cargo.lock

Lines changed: 112 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/landing/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ public/search.json
66
/.pnp
77
.pnp.*
88
.yarn/*
9-
.df
109
!.yarn/patches
1110
!.yarn/plugins
1211
!.yarn/releases

apps/landing/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
"**/*.ts",
3434
"**/*.tsx",
3535
".next/types/**/*.ts",
36-
".df/*.d.ts"
36+
"df/*.d.ts"
3737
],
3838
"exclude": [
3939
"node_modules"
4040
]
41-
}
41+
}

apps/next/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
/.pnp
66
.pnp.*
77
.yarn/*
8-
.df
98
!.yarn/patches
109
!.yarn/plugins
1110
!.yarn/releases

apps/next/src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const metadata: Metadata = {
2020
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
2121
globalCss`
2222
body {
23-
background-color: #016 !important;
23+
background-color: #040 !important;
2424
color: #248 !important;
2525
}
2626
`
@@ -33,7 +33,7 @@ export default function RootLayout({
3333
return (
3434
<html lang="en">
3535
<body className={`${geistSans.variable} ${geistMono.variable}`}>
36-
<Box color="#025">hello</Box>
36+
<Box color="#FFF">hello</Box>
3737
{children}
3838
</body>
3939
</html>

0 commit comments

Comments
 (0)