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}

- + } />
); })}