From 98432bf8794f74c7ac21224945add5a6e066140d Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Wed, 17 May 2023 00:12:05 +0100 Subject: [PATCH] Make the fields of the TrackRepeat struct public --- src/properties/grid.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/properties/grid.rs b/src/properties/grid.rs index 6cd94ef8..635761f5 100644 --- a/src/properties/grid.rs +++ b/src/properties/grid.rs @@ -163,12 +163,12 @@ pub enum TrackBreadth { #[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))] pub struct TrackRepeat<'i> { /// The repeat count. - count: RepeatCount, + pub count: RepeatCount, /// The line names to repeat. #[cfg_attr(feature = "serde", serde(borrow))] - line_names: Vec>, + pub line_names: Vec>, /// The track sizes to repeat. - track_sizes: Vec, + pub track_sizes: Vec, } /// A [``](https://drafts.csswg.org/css-grid-2/#typedef-track-repeat) value,