File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
- Update Preflight ` html ` styles to include shadow DOM ` :host ` pseudo-class ([ #11200 ] ( https://github.com/tailwindlabs/tailwindcss/pull/11200 ) )
17
17
- Increase default values for ` grid-rows-* ` utilities from 1–6 to 1–12 ([ #12180 ] ( https://github.com/tailwindlabs/tailwindcss/pull/12180 ) )
18
18
- 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 ) )
19
20
20
21
## [ 3.3.7] - 2023-12-18
21
22
Original file line number Diff line number Diff line change @@ -493,6 +493,7 @@ module.exports = {
493
493
} ,
494
494
gridTemplateColumns : {
495
495
none : 'none' ,
496
+ subgrid : 'subgrid' ,
496
497
1 : 'repeat(1, minmax(0, 1fr))' ,
497
498
2 : 'repeat(2, minmax(0, 1fr))' ,
498
499
3 : 'repeat(3, minmax(0, 1fr))' ,
@@ -508,6 +509,7 @@ module.exports = {
508
509
} ,
509
510
gridTemplateRows : {
510
511
none : 'none' ,
512
+ subgrid : 'subgrid' ,
511
513
1 : 'repeat(1, minmax(0, 1fr))' ,
512
514
2 : 'repeat(2, minmax(0, 1fr))' ,
513
515
3 : 'repeat(3, minmax(0, 1fr))' ,
You can’t perform that action at this time.
0 commit comments