@20minutes/hela 0.1.39 → 0.1.40
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/dist/components/{molecules/Article → atoms}/ArticleContent/ArticleContent.d.ts +1 -1
- package/dist/components/{molecules/Article → atoms}/ArticleContent/index.d.ts +0 -0
- package/dist/components/atoms/Embed/Embed.d.ts +5 -0
- package/dist/components/atoms/Embed/index.d.ts +1 -0
- package/dist/components/atoms/Icon/Icon.d.ts +2 -2
- package/dist/components/atoms/Input/Input.d.ts +2 -0
- package/dist/components/atoms/Link/Link.d.ts +2 -1
- package/dist/components/atoms/Section/Section.d.ts +2 -1
- package/dist/components/atoms/Tag/Tag.d.ts +1 -3
- package/dist/components/atoms/index.d.ts +2 -0
- package/dist/components/molecules/Article/{ArticleImageCover/ArticleImageCover.d.ts → ArticleCover/ArticleCover.d.ts} +3 -2
- package/dist/components/molecules/Article/ArticleCover/index.d.ts +1 -0
- package/dist/components/molecules/Article/ArticleVideo/ArticleVideo.d.ts +5 -0
- package/dist/components/molecules/Article/index.d.ts +1 -3
- package/dist/components/molecules/HeaderBanner/HeaderBanner.d.ts +2 -3
- package/dist/components/molecules/Horoscope/HoroscopeTopicCard/HoroscopeTopicCard.d.ts +2 -2
- package/dist/components/molecules/InfoBanner/InfoBanner.d.ts +2 -1
- package/dist/components/molecules/SearchForm/SearchForm.d.ts +2 -0
- package/dist/components/molecules/TagBar/TagBar.d.ts +2 -0
- package/dist/index.es.js +9002 -9004
- package/dist/index.umd.js +49 -49
- package/dist/scss/abstracts/functions/_index.scss +1 -1
- package/dist/scss/abstracts/functions/{_spaces.scss → _old-spacing.scss} +0 -14
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +7 -7
- package/dist/components/molecules/Article/ArticleImageCover/index.d.ts +0 -1
- package/dist/components/molecules/Article/ArticleVideoCover/ArticleVideoCover.d.ts +0 -6
- package/dist/components/molecules/Article/ArticleVideoCover/index.d.ts +0 -1
|
@@ -53,15 +53,6 @@
|
|
|
53
53
|
padding-left: gutter($value);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
// Returns a `margin` based on `$grid-gutter` value.
|
|
57
|
-
@mixin ma($values...) {
|
|
58
|
-
margin: newlist($values, gutter);
|
|
59
|
-
|
|
60
|
-
@if list.length($values) > 4 {
|
|
61
|
-
@warn '@mixin ma can only receive a list of 4 numbers max';
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
56
|
// Returns a `margin-top` based on `$grid-gutter` value.
|
|
66
57
|
@mixin mt($value) {
|
|
67
58
|
margin-top: gutter($value);
|
|
@@ -76,8 +67,3 @@
|
|
|
76
67
|
@mixin mb($value) {
|
|
77
68
|
margin-bottom: gutter($value);
|
|
78
69
|
}
|
|
79
|
-
|
|
80
|
-
// Returns a `margin-left` based on `$grid-gutter` value.
|
|
81
|
-
@mixin ml($value) {
|
|
82
|
-
margin-left: gutter($value);
|
|
83
|
-
}
|