NonInventPurchasingSystem/CPRNIMS.WebApps/wwwroot/MaterialDashboard/scss/material-dashboard/bootstrap/helpers/_stacks.scss
2026-01-20 07:44:30 +08:00

16 lines
245 B
SCSS

// scss-docs-start stacks
.hstack {
display: flex;
flex-direction: row;
align-items: center;
align-self: stretch;
}
.vstack {
display: flex;
flex: 1 1 auto;
flex-direction: column;
align-self: stretch;
}
// scss-docs-end stacks