We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31ce350 commit b0bac00Copy full SHA for b0bac00
src/properties/grid.rs
@@ -163,12 +163,12 @@ pub enum TrackBreadth {
163
#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
164
pub struct TrackRepeat<'i> {
165
/// The repeat count.
166
- count: RepeatCount,
+ pub count: RepeatCount,
167
/// The line names to repeat.
168
#[cfg_attr(feature = "serde", serde(borrow))]
169
- line_names: Vec<CustomIdentList<'i>>,
+ pub line_names: Vec<CustomIdentList<'i>>,
170
/// The track sizes to repeat.
171
- track_sizes: Vec<TrackSize>,
+ pub track_sizes: Vec<TrackSize>,
172
}
173
174
/// A [`<repeat-count>`](https://drafts.csswg.org/css-grid-2/#typedef-track-repeat) value,
0 commit comments