@3r1s_s/erisui 1.0.13 → 1.0.14
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/erisui.js +5 -4
- package/dist/erisui.mjs +9 -8
- package/package.json +1 -1
package/dist/erisui.js
CHANGED
|
@@ -618,17 +618,18 @@
|
|
|
618
618
|
@media (max-width: 768px) {
|
|
619
619
|
.header {
|
|
620
620
|
padding: 1rem;
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
.hero {
|
|
624
621
|
align-items: center;
|
|
625
622
|
justify-content: center;
|
|
626
623
|
text-align: center;
|
|
627
624
|
}
|
|
628
625
|
|
|
629
|
-
.
|
|
626
|
+
.hero h1 {
|
|
630
627
|
font-size: 4rem;
|
|
631
628
|
}
|
|
629
|
+
|
|
630
|
+
.large h1 {
|
|
631
|
+
font-size: 2.5rem;
|
|
632
|
+
}
|
|
632
633
|
}
|
|
633
634
|
</style>
|
|
634
635
|
|
package/dist/erisui.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var S = Object.defineProperty;
|
|
2
|
-
var
|
|
3
|
-
var v = (o, t, e) =>
|
|
4
|
-
class
|
|
2
|
+
var z = (o, t, e) => t in o ? S(o, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[t] = e;
|
|
3
|
+
var v = (o, t, e) => z(o, typeof t != "symbol" ? t + "" : t, e);
|
|
4
|
+
class M extends HTMLElement {
|
|
5
5
|
static get observedAttributes() {
|
|
6
6
|
return ["size", "border-radius", "name", "color"];
|
|
7
7
|
}
|
|
@@ -72,7 +72,7 @@ class z extends HTMLElement {
|
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
|
-
customElements.define("eui-avatar",
|
|
75
|
+
customElements.define("eui-avatar", M);
|
|
76
76
|
const u = /* @__PURE__ */ (() => {
|
|
77
77
|
let o = {};
|
|
78
78
|
return {
|
|
@@ -1078,17 +1078,18 @@ class B extends HTMLElement {
|
|
|
1078
1078
|
@media (max-width: 768px) {
|
|
1079
1079
|
.header {
|
|
1080
1080
|
padding: 1rem;
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
.hero {
|
|
1084
1081
|
align-items: center;
|
|
1085
1082
|
justify-content: center;
|
|
1086
1083
|
text-align: center;
|
|
1087
1084
|
}
|
|
1088
1085
|
|
|
1089
|
-
.
|
|
1086
|
+
.hero h1 {
|
|
1090
1087
|
font-size: 4rem;
|
|
1091
1088
|
}
|
|
1089
|
+
|
|
1090
|
+
.large h1 {
|
|
1091
|
+
font-size: 2.5rem;
|
|
1092
|
+
}
|
|
1092
1093
|
}
|
|
1093
1094
|
</style>
|
|
1094
1095
|
|