ori 0.1.0-alpha.1

A declarative ui framework for Rust
Documentation
div .widget-gallery {
	min-width: 100%;
	min-height: 100%;

	gap: 1em;

	direction: row;
	justify-content: center;
	align-items: center;
}

div .row {
	gap: 10px;

	direction: row;
	justify-content: center;
	align-items: center;
}

div .column {
	gap: 5px;

	direction: column;
	justify-content: center;
	align-items: stretch;
}

image {
	max-height: 5em;
}