@3r1s_s/erisui 1.0.12 → 1.0.13
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 +16 -0
- package/dist/erisui.mjs +16 -0
- package/package.json +1 -1
package/dist/erisui.js
CHANGED
|
@@ -614,6 +614,22 @@
|
|
|
614
614
|
.small p {
|
|
615
615
|
margin: 0;
|
|
616
616
|
}
|
|
617
|
+
|
|
618
|
+
@media (max-width: 768px) {
|
|
619
|
+
.header {
|
|
620
|
+
padding: 1rem;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.hero {
|
|
624
|
+
align-items: center;
|
|
625
|
+
justify-content: center;
|
|
626
|
+
text-align: center;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.large h1, .hero h1 {
|
|
630
|
+
font-size: 4rem;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
617
633
|
</style>
|
|
618
634
|
|
|
619
635
|
<div class="header">
|
package/dist/erisui.mjs
CHANGED
|
@@ -1074,6 +1074,22 @@ class B extends HTMLElement {
|
|
|
1074
1074
|
.small p {
|
|
1075
1075
|
margin: 0;
|
|
1076
1076
|
}
|
|
1077
|
+
|
|
1078
|
+
@media (max-width: 768px) {
|
|
1079
|
+
.header {
|
|
1080
|
+
padding: 1rem;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.hero {
|
|
1084
|
+
align-items: center;
|
|
1085
|
+
justify-content: center;
|
|
1086
|
+
text-align: center;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
.large h1, .hero h1 {
|
|
1090
|
+
font-size: 4rem;
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1077
1093
|
</style>
|
|
1078
1094
|
|
|
1079
1095
|
<div class="header">
|