Quiz_dashboard/src/Styles/Layout/Layout.scss
karimaldeen 398d1e8f07 format
2024-09-10 10:20:21 +03:00

77 lines
1.3 KiB
SCSS

// Layout Layout_Body Layout_Children
.Layout {
display: flex;
width: 100%;
height: 100%;
min-height: 100vh;
width: 100vw;
position: relative;
overflow-x: hidden;
overflow-y: hidden;
}
.Layout_Body {
width: 100%;
background-color: transparent;
height: 100%;
transition: all 0.6s ease;
// min-height: 100vh;
position: relative;
padding-right: calc(max(var(--sideBarWidth), var(--sideBarMinWidth)));
// padding-top: var(--sideBarSpace);
z-index: 2;
}
.side_bar_close {
padding-right: var(--sideBarWidthClosed);
}
.Layout_Children {
background-color: red;
background: var(--bg2);
height: 100%;
width: 100%;
// padding-inline: 2%;
// margin-top: 60px;
}
.en {
.Layout_Body {
padding-right: 0 !important;
padding-left: calc(var(--sideBarWidth) + var(--sideBarSpace));
}
}
.Layout_Children {
> * {
display: flex;
width: 100%;
// min-height: 100vh;
// align-self: stretch;
// padding: 20px;
// padding-right: 20px;
}
}
//// tooltip in usetableculomn
.ant-tooltip .ant-tooltip-inner {
color: var(--text);
box-shadow: none;
width: 70px;
text-align: center;
font-weight: 400;
}
.page {
display: flex;
flex-direction: column;
gap: 3vw;
}
.ant-tooltip .ant-tooltip-inner {
min-width: 120px;
}
.SpinContainer {
@include Flex;
height: 100%;
min-height: 20vh;
}