UNPKG

@roadtrip/css

Version:

CSS framework for Roadtrip Design System

39 lines (30 loc) 311 B
/* * Sizing utilities * * Index * - With * - Height * */ /* WIDTH -------------------- */ .w-full { width: 100%; } .w-screen { width: 100vh; } .w-auto { width: auto; } /* HEIGHT -------------------- */ .h-full { height: 100%; } .h-screen { height: 100vh; } .h-auto { height: auto; }