Skip to content

Commit 62aa0e3

Browse files
adamwathanthecrypticace
authored andcommitted
Add subgrid utilities (#12298)
* Add subgrid utilities * Update CHANGELOG --------- Co-authored-by: Adam Wathan <[email protected]>
1 parent d63a9f9 commit 62aa0e3

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Update Preflight `html` styles to include shadow DOM `:host` pseudo-class ([#11200](https://github.com/tailwindlabs/tailwindcss/pull/11200))
1717
- Increase default values for `grid-rows-*` utilities from 1–6 to 1–12 ([#12180](https://github.com/tailwindlabs/tailwindcss/pull/12180))
1818
- Add `size-*` utilities ([#12287](https://github.com/tailwindlabs/tailwindcss/pull/12287))
19+
- Add utilities for CSS subgrid ([#12298](https://github.com/tailwindlabs/tailwindcss/pull/12298))
1920

2021

2122
## [3.3.6] - 2023-12-04

stubs/config.full.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@ module.exports = {
493493
},
494494
gridTemplateColumns: {
495495
none: 'none',
496+
subgrid: 'subgrid',
496497
1: 'repeat(1, minmax(0, 1fr))',
497498
2: 'repeat(2, minmax(0, 1fr))',
498499
3: 'repeat(3, minmax(0, 1fr))',
@@ -508,6 +509,7 @@ module.exports = {
508509
},
509510
gridTemplateRows: {
510511
none: 'none',
512+
subgrid: 'subgrid',
511513
1: 'repeat(1, minmax(0, 1fr))',
512514
2: 'repeat(2, minmax(0, 1fr))',
513515
3: 'repeat(3, minmax(0, 1fr))',

0 commit comments

Comments
 (0)