diff --git a/ui/src/assets/base.css b/ui/src/assets/base.css index f17bed7..3f67ca8 100644 --- a/ui/src/assets/base.css +++ b/ui/src/assets/base.css @@ -6,7 +6,7 @@ :root { --background: oklch(0.2046 0 0); --foreground: oklch(0.9219 0 0); - --card: oklch(0.2686 0 0); + --card: oklch(23.075% 0.00003 271.152); --card-foreground: oklch(0.9219 0 0); --popover: oklch(0.2686 0 0); --popover-foreground: oklch(0.9219 0 0); @@ -55,7 +55,7 @@ .dark { --background: oklch(0.2046 0 0); --foreground: oklch(0.9219 0 0); - --card: oklch(0.2686 0 0); + --card: oklch(23.075% 0.00003 271.152); --card-foreground: oklch(0.9219 0 0); --popover: oklch(0.2686 0 0); --popover-foreground: oklch(0.9219 0 0); diff --git a/ui/src/components/ui/card/Card.vue b/ui/src/components/ui/card/Card.vue new file mode 100644 index 0000000..16920e4 --- /dev/null +++ b/ui/src/components/ui/card/Card.vue @@ -0,0 +1,21 @@ + + + diff --git a/ui/src/components/ui/card/CardAction.vue b/ui/src/components/ui/card/CardAction.vue new file mode 100644 index 0000000..4c13362 --- /dev/null +++ b/ui/src/components/ui/card/CardAction.vue @@ -0,0 +1,21 @@ + + + diff --git a/ui/src/components/ui/card/CardContent.vue b/ui/src/components/ui/card/CardContent.vue new file mode 100644 index 0000000..f54f541 --- /dev/null +++ b/ui/src/components/ui/card/CardContent.vue @@ -0,0 +1,13 @@ + + + diff --git a/ui/src/components/ui/card/CardDescription.vue b/ui/src/components/ui/card/CardDescription.vue new file mode 100644 index 0000000..199875d --- /dev/null +++ b/ui/src/components/ui/card/CardDescription.vue @@ -0,0 +1,16 @@ + + + diff --git a/ui/src/components/ui/card/CardFooter.vue b/ui/src/components/ui/card/CardFooter.vue new file mode 100644 index 0000000..a28c159 --- /dev/null +++ b/ui/src/components/ui/card/CardFooter.vue @@ -0,0 +1,16 @@ + + + diff --git a/ui/src/components/ui/card/CardHeader.vue b/ui/src/components/ui/card/CardHeader.vue new file mode 100644 index 0000000..cc387d1 --- /dev/null +++ b/ui/src/components/ui/card/CardHeader.vue @@ -0,0 +1,21 @@ + + + diff --git a/ui/src/components/ui/card/CardTitle.vue b/ui/src/components/ui/card/CardTitle.vue new file mode 100644 index 0000000..bb88bf0 --- /dev/null +++ b/ui/src/components/ui/card/CardTitle.vue @@ -0,0 +1,16 @@ + + + diff --git a/ui/src/components/ui/card/index.js b/ui/src/components/ui/card/index.js new file mode 100644 index 0000000..409685b --- /dev/null +++ b/ui/src/components/ui/card/index.js @@ -0,0 +1,7 @@ +export { default as Card } from "./Card.vue"; +export { default as CardAction } from "./CardAction.vue"; +export { default as CardContent } from "./CardContent.vue"; +export { default as CardDescription } from "./CardDescription.vue"; +export { default as CardFooter } from "./CardFooter.vue"; +export { default as CardHeader } from "./CardHeader.vue"; +export { default as CardTitle } from "./CardTitle.vue"; diff --git a/ui/src/pages/ManageTransfers.vue b/ui/src/pages/ManageTransfers.vue new file mode 100644 index 0000000..b40f70c --- /dev/null +++ b/ui/src/pages/ManageTransfers.vue @@ -0,0 +1,106 @@ + + \ No newline at end of file diff --git a/ui/src/router/index.js b/ui/src/router/index.js index 28678a6..6e80ddb 100644 --- a/ui/src/router/index.js +++ b/ui/src/router/index.js @@ -25,8 +25,8 @@ const router = createRouter({ component: () => import('@/pages/Application.vue') }, { - path: 'transfer-requests', - component: () => import('@/pages/RankChange.vue') + path: 'transfer', + component: () => import('@/pages/ManageTransfers.vue') }, { path: 'loa',