Skip to content

Commit

Permalink
radius
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajdip019 committed Jun 11, 2024
1 parent fcf30f9 commit 1672202
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
6 changes: 6 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ build-run-server: setup
run-server: setup
docker-compose up

# Target to build the ui / next app using npm i
.PHONY: build-ui
build-ui:
cd ui; \
npm i

# Target to run the ui / next app using npm run dev
.PHONY: run-ui
run-ui: setup
Expand Down
26 changes: 14 additions & 12 deletions ui/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind components;
@tailwind utilities;

@layer base {
:root {
--background: 222.2 84% 4.9%;
--background: 222.2 50% 4.9%;
--foreground: 210 40% 98%;
--card: 222.2 84% 4.9%;
--card-foreground: 210 40% 98%;
Expand All @@ -23,15 +23,17 @@
--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 224.3 76.3% 48%;
--radius: 0.5rem;
}
}


@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}
@layer base {
* {
@apply border-border;
}

body {
@apply bg-background text-foreground;
}
}

0 comments on commit 1672202

Please sign in to comment.