Product: PowerShell Universal
Version: 5.1.0
I’m trying to make a UD Paper within a grid row the same height. I’m sure this is simple but I can’t figure out how to make the UD paper fill the container either with UD grid or UD row/columns.
There is Height parameter on UD paper but it doesn’t have any effect.
New-UDGrid -Container -Content {
New-UDGrid -Item -ExtraSmallSize 6 -Content {
New-UDPaper -Content {
New-UDTypography -Text "Header" -variant h1
} -Elevation 3
}
New-UDGrid -Item -ExtraSmallSize 6 -Content {
New-UDPaper -Content {
"test"
} -Elevation 3
}
}