matcha-theme 1.0.20 → 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.
Files changed (2) hide show
  1. package/base/_helpers.scss +66 -0
  2. package/package.json +1 -1
@@ -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
  // -----------------------------------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matcha-theme",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "styles for matcha-design-system",
5
5
  "main": "main.scss",
6
6
  "scripts": {