coer-elements 2.0.27 → 2.0.29
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/components/lib/coer-button/coer-button.component.d.ts +3 -1
- package/components/lib/coer-datebox/coer-datebox.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-page-title/coer-page-title.component.d.ts +4 -0
- package/components/lib/coer-secretbox/coer-secretbox.component.d.ts +1 -1
- package/components/lib/coer-sidenav/coer-toolbar/coer-toolbar.component.d.ts +3 -2
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/fesm2022/coer-elements-components.mjs +29 -15
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-pages.mjs +28 -26
- package/fesm2022/coer-elements-pages.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +3 -3
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/pages/lib/coer-system/login/login.component.d.ts +5 -7
- package/styles/coer-elements.css +1 -1
- package/styles/containers.scss +1 -1
- package/styles/index.scss +24 -21
package/styles/containers.scss
CHANGED
package/styles/index.scss
CHANGED
@@ -30,28 +30,11 @@
|
|
30
30
|
'md-' : 768px,
|
31
31
|
'lg-' : 992px,
|
32
32
|
'xl-' : 1200px,
|
33
|
-
'xxl-' : 1400px
|
34
|
-
) {
|
35
|
-
@media (min-width: $min-width) {
|
36
|
-
@include _animations.mixin($breakpoint);
|
37
|
-
@include _borders.mixin($breakpoint);
|
38
|
-
@include _colors.mixin($breakpoint);
|
39
|
-
@include _cursors.mixin($breakpoint);
|
40
|
-
@include _displays.mixin($breakpoint);
|
41
|
-
@include _fonts.mixin($breakpoint);
|
42
|
-
@include _layout-flex-wrap.mixin($breakpoint);
|
43
|
-
@include _layout-flex.mixin($breakpoint);
|
44
|
-
@include _layout-grid.mixin($breakpoint);
|
45
|
-
@include _margins.mixin($breakpoint);
|
46
|
-
@include _overflow.mixin($breakpoint);
|
47
|
-
@include _padding.mixin($breakpoint);
|
48
|
-
@include _paragraphs.mixin($breakpoint);
|
49
|
-
@include _positions.mixin($breakpoint);
|
50
|
-
@include _width-height.mixin($breakpoint);
|
51
|
-
}
|
33
|
+
'xxl-' : 1400px,
|
34
|
+
) {
|
52
35
|
|
53
|
-
@if($breakpoint == 'mv-') {
|
54
|
-
@media (max-width: 499px) {
|
36
|
+
@if ($breakpoint == 'mv-') {
|
37
|
+
@media (min-width: $min-width) and (max-width: 499px) {
|
55
38
|
@include _animations.mixin($breakpoint);
|
56
39
|
@include _borders.mixin($breakpoint);
|
57
40
|
@include _colors.mixin($breakpoint);
|
@@ -69,4 +52,24 @@
|
|
69
52
|
@include _width-height.mixin($breakpoint);
|
70
53
|
}
|
71
54
|
}
|
55
|
+
|
56
|
+
@else {
|
57
|
+
@media (min-width: $min-width) {
|
58
|
+
@include _animations.mixin($breakpoint);
|
59
|
+
@include _borders.mixin($breakpoint);
|
60
|
+
@include _colors.mixin($breakpoint);
|
61
|
+
@include _cursors.mixin($breakpoint);
|
62
|
+
@include _displays.mixin($breakpoint);
|
63
|
+
@include _fonts.mixin($breakpoint);
|
64
|
+
@include _layout-flex-wrap.mixin($breakpoint);
|
65
|
+
@include _layout-flex.mixin($breakpoint);
|
66
|
+
@include _layout-grid.mixin($breakpoint);
|
67
|
+
@include _margins.mixin($breakpoint);
|
68
|
+
@include _overflow.mixin($breakpoint);
|
69
|
+
@include _padding.mixin($breakpoint);
|
70
|
+
@include _paragraphs.mixin($breakpoint);
|
71
|
+
@include _positions.mixin($breakpoint);
|
72
|
+
@include _width-height.mixin($breakpoint);
|
73
|
+
}
|
74
|
+
}
|
72
75
|
}
|