From e1c6b4bfc4cc9bce74d0b5d0d04ddcf585cb4353 Mon Sep 17 00:00:00 2001 From: Laux Dev <2201104208@student.buksu.edu.ph> Date: Tue, 3 Mar 2026 15:50:07 +0800 Subject: [PATCH] fixed --- .../components/actionButton/styles.module.css | 2 +- frontend/src/app/components/icons/logo.jsx | 53 +++++++++++++++++++ .../src/app/components/sidebar/Sidebar.jsx | 46 +--------------- frontend/src/app/globals.css | 2 +- .../app/projects/view/[servicesId]/page.jsx | 3 +- 5 files changed, 59 insertions(+), 47 deletions(-) create mode 100644 frontend/src/app/components/icons/logo.jsx diff --git a/frontend/src/app/components/actionButton/styles.module.css b/frontend/src/app/components/actionButton/styles.module.css index b5cdff5..3ed40de 100644 --- a/frontend/src/app/components/actionButton/styles.module.css +++ b/frontend/src/app/components/actionButton/styles.module.css @@ -1,6 +1,6 @@ .iconButton { display: flex; - padding: 6px; + padding: 3px; flex-direction: column; justify-content: center; align-items: center; diff --git a/frontend/src/app/components/icons/logo.jsx b/frontend/src/app/components/icons/logo.jsx new file mode 100644 index 0000000..9065927 --- /dev/null +++ b/frontend/src/app/components/icons/logo.jsx @@ -0,0 +1,53 @@ +import React from "react"; + +const LogoIcon = (props) => { + return ( + + ); +}; + +export default LogoIcon; diff --git a/frontend/src/app/components/sidebar/Sidebar.jsx b/frontend/src/app/components/sidebar/Sidebar.jsx index 1fdf896..fa6bb22 100644 --- a/frontend/src/app/components/sidebar/Sidebar.jsx +++ b/frontend/src/app/components/sidebar/Sidebar.jsx @@ -11,6 +11,7 @@ import RolesIcon from "../icons/roles"; import CredentialsIcon from "../icons/credentials"; import AgentIcon from "../icons/agent"; import DownloadIcon from "../icons/download"; +import LogoIcon from "../icons/logo"; const Sidebar = () => { const router = useRouter(); @@ -45,50 +46,7 @@ const Sidebar = () => {
Internal Developer Platform
diff --git a/frontend/src/app/globals.css b/frontend/src/app/globals.css index dbc2dcb..120a0f5 100644 --- a/frontend/src/app/globals.css +++ b/frontend/src/app/globals.css @@ -42,7 +42,7 @@ a { } } ::-webkit-scrollbar { - width: 8px; + width: 6px; height: 8px; background-color: transparent; } diff --git a/frontend/src/app/projects/view/[servicesId]/page.jsx b/frontend/src/app/projects/view/[servicesId]/page.jsx index 07f46d2..0dc3ed6 100644 --- a/frontend/src/app/projects/view/[servicesId]/page.jsx +++ b/frontend/src/app/projects/view/[servicesId]/page.jsx @@ -11,6 +11,7 @@ import AddConfigMapModal from "../variableModals/AddConfigMap/AddConfigMapModal" import CustomCheckbox from "@/app/components/checkbox/CheckBox"; import DeleteIcon from "@/app/components/icons/delete"; import SelectField from "@/app/components/select/SelectField"; +import ActionButton from "@/app/components/actionButton/ActionButton"; const AddServices = () => { const [triggerVariableDropDown, setTriggerVariableDropDown] = useState(false); const [triggerAddVariable, setTriggerAddVariable] = useState(false); @@ -331,7 +332,7 @@ const AddServices = () => {{data.key}
{data.value}
-