Signed-off-by: supriya-krishnamurthi <supriya.krishnamurthi@intel.com> Signed-off-by: Yogesh <yogeshpandey@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: lvliang-intel <liang1.lv@intel.com> Co-authored-by: Yogesh <yogeshpandey@intel.com> Co-authored-by: Hoong Tee, Yeoh <hoong.tee.yeoh@intel.com> Co-authored-by: Yogesh Pandey <yogesh.pandey@intel.com>
47 lines
714 B
SCSS
47 lines
714 B
SCSS
// Copyright (C) 2024 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
@import "./styles/styles";
|
|
|
|
.root {
|
|
@include flex(row, nowrap, flex-start, flex-start);
|
|
}
|
|
|
|
.layout-wrapper {
|
|
@include absolutes;
|
|
|
|
display: grid;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
grid-template-columns: 80px auto;
|
|
grid-template-rows: 1fr;
|
|
}
|
|
|
|
.content {
|
|
padding: 25px;
|
|
}
|
|
|
|
/* ===== Scrollbar CSS ===== */
|
|
/* Firefox */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #d6d6d6 #ffffff;
|
|
}
|
|
|
|
/* Chrome, Edge, and Safari */
|
|
*::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: #ffffff;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background-color: #d6d6d6;
|
|
border-radius: 16px;
|
|
border: 4px double #dedede;
|
|
}
|