diff --git a/webui/src/index.sass b/webui/src/index.sass index 8b1f1bde..8bac46e2 100644 --- a/webui/src/index.sass +++ b/webui/src/index.sass @@ -21,3 +21,9 @@ pre .visible-on-hover:hover .hidden-child visibility: visible + +.float-center-right + position: absolute + right: 0px + top: "50%" + transform: "translateY(-50%)" diff --git a/webui/src/views/App.tsx b/webui/src/views/App.tsx index 78fa7cdf..b3eb7c9a 100644 --- a/webui/src/views/App.tsx +++ b/webui/src/views/App.tsx @@ -178,10 +178,11 @@ const getSidenavItems = (config: Config | null): MenuProps["items"] => {
{plan.id}{" "}
+ ), onClick: async () => { const { RepoView } = await import("./RepoView");