@spaced-out/ui-design-system
Version:
Sense UI components library
25 lines (21 loc) • 625 B
CSS
@value (colorFillPrimary) from '../../styles/variables/_color.css';
@value (sizeFluid) from '../../styles/variables/_size.css';
@value (spaceSmall, spaceXSmall) from '../../styles/variables/_space.css';
.container {
display: flex;
composes: borderTopPrimary from '../../styles/border.module.css';
justify-content: space-between;
align-items: center;
width: sizeFluid;
padding-top: spaceSmall;
padding-bottom: spaceSmall;
}
.leftSection {
display: flex;
align-items: center;
gap: spaceXSmall;
}
.componentHousing {
display: flex;
composes: subTitleSmall from '../../styles/typography.module.css';
}