nishant-design-system
Version:
Sense UI components library
39 lines (33 loc) • 926 B
CSS
@value (colorBackgroundTertiary) from '../../styles/variables/_color.css';
@value (spaceNone, spaceXSmall, spaceSmall, spaceMedium, spaceLarge) from '../../styles/variables/_space.css';
@value (sizeFluid, size60) from '../../styles/variables/_size.css';
.pageTitleWrapper {
composes: borderBottomPrimary from '../../styles/border.module.css';
background: colorBackgroundTertiary;
display: flex;
flex-direction: row;
justify-content: space-between;
box-sizing: border-box;
padding: spaceSmall spaceLarge spaceXSmall spaceLarge;
width: sizeFluid;
min-height: size60;
gap: spaceMedium;
height: fit-content;
}
.leftSlot {
display: flex;
flex-direction: column;
gap: spaceXSmall;
}
.pageTitle {
display: flex;
flex-direction: row;
gap: spaceXSmall;
justify-content: flex-start;
align-items: center;
}
.rightSlot {
display: flex;
flex-direction: column;
justify-content: flex-end;
}