0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-03-15 15:29:22 +01:00

Add .d-grid to our display utilities (#32066)

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
Mark Otto 2020-11-06 04:35:17 -08:00 committed by GitHub
parent 82f2416132
commit f20335b6c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,7 @@ $utilities: map-merge(
print: true, print: true,
property: display, property: display,
class: d, class: d,
values: inline inline-block block table table-row table-cell flex inline-flex none values: inline inline-block block grid table table-row table-cell flex inline-flex none
), ),
"shadow": ( "shadow": (
property: box-shadow, property: box-shadow,

View File

@ -25,6 +25,7 @@ Where *value* is one of:
- `inline` - `inline`
- `inline-block` - `inline-block`
- `block` - `block`
- `grid`
- `table` - `table`
- `table-cell` - `table-cell`
- `table-row` - `table-row`
@ -135,6 +136,7 @@ Change the `display` value of elements when printing with our print display util
- `.d-print-inline` - `.d-print-inline`
- `.d-print-inline-block` - `.d-print-inline-block`
- `.d-print-block` - `.d-print-block`
- `.d-print-grid`
- `.d-print-table` - `.d-print-table`
- `.d-print-table-row` - `.d-print-table-row`
- `.d-print-table-cell` - `.d-print-table-cell`