bobrilstrap
Version:
Bobril wrapper for bootstrap 5
9 lines (5 loc) • 343 B
text/typescript
import * as b from "bobril";
import { createFilledDictionary } from "../../utils/dict";
export type Overflow = "auto" | "hidden" | "visible" | "scroll";
const overflows: Overflow[] = ["auto", "hidden", "visible", "scroll"];
export const overflow = createFilledDictionary(overflows.map((value) => [value, b.styleDef(`overflow-${value}`)]));