Skip to content

Commit

Permalink
Merge branch 'feature/add-col-and-row-span-full-utility' into release…
Browse files Browse the repository at this point in the history
…/1.11.0
  • Loading branch information
ben-rogerson committed Oct 15, 2020
2 parents 2b16242 + ed81270 commit 44d55c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions __fixtures__/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ tw`col-span-9`
tw`col-span-10`
tw`col-span-11`
tw`col-span-12`
tw`col-span-full`
tw`col-start-1`
tw`col-start-2`
tw`col-start-3`
Expand Down Expand Up @@ -75,6 +76,7 @@ tw`row-span-3`
tw`row-span-4`
tw`row-span-5`
tw`row-span-6`
tw`row-span-full`
tw`row-start-1`
tw`row-start-2`
tw`row-start-3`
Expand Down
8 changes: 8 additions & 0 deletions __snapshots__/plugin.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6559,6 +6559,7 @@ tw\`col-span-9\`
tw\`col-span-10\`
tw\`col-span-11\`
tw\`col-span-12\`
tw\`col-span-full\`
tw\`col-start-1\`
tw\`col-start-2\`
tw\`col-start-3\`
Expand Down Expand Up @@ -6605,6 +6606,7 @@ tw\`row-span-3\`
tw\`row-span-4\`
tw\`row-span-5\`
tw\`row-span-6\`
tw\`row-span-full\`
tw\`row-start-1\`
tw\`row-start-2\`
tw\`row-start-3\`
Expand Down Expand Up @@ -6850,6 +6852,9 @@ tw\`place-self-stretch\`
;({
gridColumn: 'span 12 / span 12',
})
;({
gridColumn: '1 / -1',
})
;({
gridColumnStart: '1',
})
Expand Down Expand Up @@ -6978,6 +6983,9 @@ tw\`place-self-stretch\`
;({
gridRow: 'span 6 / span 6',
})
;({
gridRow: '1 / -1',
})
;({
gridRowStart: '1',
})
Expand Down

0 comments on commit 44d55c5

Please sign in to comment.