UNPKG

@isotope/prototope

Version:

Isotope-based JavaScript library for speedy UI prototyping

24 lines (21 loc) 739 B
import { createUtil } from "../util"; const bgBottom = createUtil({ backgroundPosition: "bottom" }); const bgCenter = createUtil({ backgroundPosition: "center" }); const bgLeft = createUtil({ backgroundPosition: "left" }); const bgLeftBottom = createUtil({ backgroundPosition: "left bottom" }); const bgLeftTop = createUtil({ backgroundPosition: "left top" }); const bgRight = createUtil({ backgroundPosition: "right" }); const bgRightBottom = createUtil({ backgroundPosition: "right bottom" }); const bgRightTop = createUtil({ backgroundPosition: "right top" }); const bgTop = createUtil({ backgroundPosition: "top" }); export { bgBottom, bgCenter, bgLeft, bgLeftBottom, bgLeftTop, bgRight, bgRightBottom, bgRightTop, bgTop };