Skip to content

Commit acf3b67

Browse files
committed
added row-gap overrides
1 parent f905fde commit acf3b67

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@firestitch/style",
33
"title": "Style",
44
"description": "@firestitch/style",
5-
"version": "18.0.37",
5+
"version": "18.0.38",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/Firestitch/ngx-style"

src/styles/_layout.scss

+20
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,26 @@
149149
column-gap: 0px;
150150
}
151151

152+
&[#{$attributeName}*='.row-gap-none'] {
153+
row-gap: 0px;
154+
}
155+
156+
&[#{$attributeName}*='.row-gap-xs'] {
157+
row-gap: 5px;
158+
}
159+
160+
&[#{$attributeName}*='.row-gap-sm'] {
161+
row-gap: 10px;
162+
}
163+
164+
&[#{$attributeName}*='.row-gap-md'] {
165+
row-gap: 20px;
166+
}
167+
168+
&[#{$attributeName}*='.row-gap-lg'] {
169+
row-gap: 40px;
170+
}
171+
152172
&[#{$attributeName}*='.align-start'] {
153173
align-items: flex-start;
154174
}

0 commit comments

Comments
 (0)