properties
changelog

Height

Set element's height.

Usage:

  • @size h-*;

Reference

shilp.config.js
const shilpConfig = {
	source: "react",

	properties: {
		size: {
			h: {
				property: "height: <v><i>;",
				resolve: "spacing",
				themeKey: "spacing",
				values: {
					min: "min-content",
					max: "max-content",
					fit: "fit-content",
					screen: "100vh",
				},
			},
		},
	},
};

export default shilpConfig;