0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-05 06:10:52 -05:00
penpot-exporter-figma-plugin/ui-src/components/Stack/Stack.module.css

33 lines
387 B
CSS
Raw Normal View History

.stack {
--direction: column;
--spacing: 1.5rem;
display: flex;
flex-direction: var(--direction);
gap: var(--spacing);
& > * {
flex: 1;
}
.stack-row {
--direction: row;
}
.stack-small {
--spacing: 1rem;
}
.stack-xsmall {
--spacing: 0.5rem;
}
.stack-2xsmall {
--spacing: 0.25rem;
}
.stack-center {
align-items: center;
}
}