matcha-theme 1.0.19 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abstracts/_grid.scss +3 -8
- package/base/_helpers.scss +66 -0
- package/package.json +1 -1
package/abstracts/_grid.scss
CHANGED
|
@@ -141,9 +141,9 @@
|
|
|
141
141
|
// Dynamic gaps
|
|
142
142
|
// -------------------------------------------------------------------------------------------------------------------
|
|
143
143
|
.gap-inside {
|
|
144
|
-
-moz-column-gap:
|
|
145
|
-
column-gap:
|
|
146
|
-
row-gap:
|
|
144
|
+
-moz-column-gap: 16px;
|
|
145
|
+
column-gap: 16px;
|
|
146
|
+
row-gap: 16px;
|
|
147
147
|
}
|
|
148
148
|
.gap-outside {
|
|
149
149
|
-moz-column-gap: 16px;
|
|
@@ -151,11 +151,6 @@
|
|
|
151
151
|
row-gap: 16px;
|
|
152
152
|
}
|
|
153
153
|
@media screen and (min-width: 600px) {
|
|
154
|
-
.gap-inside {
|
|
155
|
-
-moz-column-gap: 16px;
|
|
156
|
-
column-gap: 16px;
|
|
157
|
-
row-gap: 16px;
|
|
158
|
-
}
|
|
159
154
|
.gap-outside {
|
|
160
155
|
-moz-column-gap: 24px;
|
|
161
156
|
column-gap: 24px;
|
package/base/_helpers.scss
CHANGED
|
@@ -1888,6 +1888,72 @@ $align-class-names: top, right, bottom, left;
|
|
|
1888
1888
|
}
|
|
1889
1889
|
@include helper-line-height($helper-breakpoints);
|
|
1890
1890
|
|
|
1891
|
+
|
|
1892
|
+
// -----------------------------------------------------------------------------------------------------
|
|
1893
|
+
// @ aspect ratio
|
|
1894
|
+
// -----------------------------------------------------------------------------------------------------
|
|
1895
|
+
.aspect-ratio-auto {
|
|
1896
|
+
aspect-ratio: auto;
|
|
1897
|
+
}
|
|
1898
|
+
.aspect-ratio-auto-1x1 {
|
|
1899
|
+
aspect-ratio: auto 1 / 1;
|
|
1900
|
+
}
|
|
1901
|
+
.aspect-ratio-auto-1x2 {
|
|
1902
|
+
aspect-ratio: auto 1 / 2;
|
|
1903
|
+
}
|
|
1904
|
+
.aspect-ratio-auto-2x1 {
|
|
1905
|
+
aspect-ratio: auto 2 / 1;
|
|
1906
|
+
}
|
|
1907
|
+
.aspect-ratio-auto-3x4 {
|
|
1908
|
+
aspect-ratio: auto 3 / 4;
|
|
1909
|
+
}
|
|
1910
|
+
.aspect-ratio-auto-4x3 {
|
|
1911
|
+
aspect-ratio: auto 4 / 3;
|
|
1912
|
+
}
|
|
1913
|
+
.aspect-ratio-auto-9x16 {
|
|
1914
|
+
aspect-ratio: auto 9 / 16;
|
|
1915
|
+
}
|
|
1916
|
+
.aspect-ratio-auto-16x9 {
|
|
1917
|
+
aspect-ratio: auto 16 / 9;
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
.aspect-ratio-1x1 {
|
|
1921
|
+
aspect-ratio: 1 / 1;
|
|
1922
|
+
}
|
|
1923
|
+
.aspect-ratio-1x2 {
|
|
1924
|
+
aspect-ratio: 1 / 2;
|
|
1925
|
+
}
|
|
1926
|
+
.aspect-ratio-2x1 {
|
|
1927
|
+
aspect-ratio: 2 / 1;
|
|
1928
|
+
}
|
|
1929
|
+
.aspect-ratio-3x4 {
|
|
1930
|
+
aspect-ratio: 3 / 4;
|
|
1931
|
+
}
|
|
1932
|
+
.aspect-ratio-4x3 {
|
|
1933
|
+
aspect-ratio: 4 / 3;
|
|
1934
|
+
}
|
|
1935
|
+
.aspect-ratio-9x16 {
|
|
1936
|
+
aspect-ratio: 9 / 16;
|
|
1937
|
+
}
|
|
1938
|
+
.aspect-ratio-16x9 {
|
|
1939
|
+
aspect-ratio: 16 / 9;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.aspect-ratio-half {
|
|
1943
|
+
aspect-ratio: 0.5;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.aspect-ratio-inherit {
|
|
1947
|
+
aspect-ratio: inherit;
|
|
1948
|
+
}
|
|
1949
|
+
.aspect-ratio-initial {
|
|
1950
|
+
aspect-ratio: initial;
|
|
1951
|
+
}
|
|
1952
|
+
.aspect-ratio-unset {
|
|
1953
|
+
aspect-ratio: unset;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
|
|
1891
1957
|
// -----------------------------------------------------------------------------------------------------
|
|
1892
1958
|
// @ Letter spacing helpers
|
|
1893
1959
|
// -----------------------------------------------------------------------------------------------------
|