Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Latest commit

 

History

History
38 lines (26 loc) · 736 Bytes

main.md

File metadata and controls

38 lines (26 loc) · 736 Bytes

vue-grid

Breakpoints

vue-grid is built mobile-first, reflecting the bootstrap layout breakpoints I.E.

  breakpoints: {
    xs: 320,
    sm: 576,
    md: 768,
    lg: 992,
    xl: 1200
  }

you can easily override them passing them on config options when you install vue-grid

import VueGrid from '@liqueflies/vue-grid'

Vue.use(VueGrid, { /* your configuration */ })

Gutter

Default gutter is 16 and you can override passing the gutter property on config options.

Columns

Default columns number is 12 and you can override passing the columns property on config options.

Components