* CodeGen: Manifest to deploy CodeGen with ReactUI into Kubernetes Include manifest to deploy CodeGen pipeline with ReactUI into Kubernetes. Include as well README file for the steps. Signed-off-by: Yeoh, Hoong Tee <hoong.tee.yeoh@intel.com> * code-gen-react-ui Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * made changes as per PR suggestions Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * updated readme Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * update base image Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * updated codegn dockerfile react Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * updated wait time Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * updated as per PR comments Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * aded react ui in gaudi test file Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * fixed PR comments Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * added docker pull for text-generation-model Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> * removed unused files Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> --------- Signed-off-by: Yeoh, Hoong Tee <hoong.tee.yeoh@intel.com> Signed-off-by: jaswanth8888 <karani.jaswanth@gmail.com> Co-authored-by: Yeoh, Hoong Tee <hoong.tee.yeoh@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: chen, suyue <suyue.chen@intel.com>
85 lines
2.1 KiB
SCSS
85 lines
2.1 KiB
SCSS
/**
|
|
Copyright (c) 2024 Intel Corporation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
**/
|
|
|
|
@import "../../styles/styles";
|
|
|
|
.navbar {
|
|
width: 100%;
|
|
@include flex(column, nowrap, center, flex-start);
|
|
padding: var(--mantine-spacing-md);
|
|
background-color: var(--mantine-color-blue-filled);
|
|
// background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-6));
|
|
// border-right: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
|
|
}
|
|
|
|
.navbarMain {
|
|
flex: 1;
|
|
}
|
|
|
|
.navbarLogo {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding-top: var(--mantine-spacing-md);
|
|
margin-bottom: var(--mantine-spacing-xl);
|
|
}
|
|
|
|
.link {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: var(--mantine-radius-md);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--mantine-color-white);
|
|
|
|
&:hover {
|
|
background-color: var(--mantine-color-blue-7);
|
|
}
|
|
|
|
&[data-active] {
|
|
&,
|
|
&:hover {
|
|
box-shadow: var(--mantine-shadow-sm);
|
|
background-color: var(--mantine-color-white);
|
|
color: var(--mantine-color-blue-6);
|
|
}
|
|
}
|
|
}
|
|
|
|
.aside {
|
|
flex: 0 0 60px;
|
|
background-color: var(--mantine-color-body);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
border-right: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-7));
|
|
}
|
|
|
|
.logo {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
height: 60px;
|
|
padding-top: var(--mantine-spacing-s);
|
|
border-bottom: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-7));
|
|
margin-bottom: var(--mantine-spacing-xl);
|
|
}
|
|
.logoImg {
|
|
width: 30px;
|
|
}
|