cinqcinqdev-seo 1.0.8 → 1.0.9
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/module.json
CHANGED
|
@@ -1081,16 +1081,25 @@ const savePage = async () => {
|
|
|
1081
1081
|
<!-- Title row -->
|
|
1082
1082
|
<div>
|
|
1083
1083
|
<p class="text-[8px] font-black uppercase tracking-widest text-[#3d35ff]/60 mb-2">Title (h1–h4)</p>
|
|
1084
|
-
<div class="mb-2">
|
|
1085
|
-
<
|
|
1086
|
-
|
|
1087
|
-
<
|
|
1088
|
-
|
|
1084
|
+
<div class="flex gap-2 mb-2">
|
|
1085
|
+
<div class="flex-1">
|
|
1086
|
+
<label class="text-[7px] font-black uppercase text-gray-400 block mb-1">Size (rem)</label>
|
|
1087
|
+
<div class="flex items-center gap-1 bg-gray-50 rounded-xl ring-1 ring-gray-100 overflow-hidden px-2">
|
|
1088
|
+
<input type="number" :value="getStyle('titleFontSize')" @input="setStyle('titleFontSize', $event.target.value)" min="0.1" max="20" step="0.1" placeholder="—" class="flex-1 bg-transparent py-2.5 text-[10px] font-mono outline-none w-0" />
|
|
1089
|
+
<span class="text-[8px] text-gray-300 shrink-0">rem</span>
|
|
1090
|
+
</div>
|
|
1089
1091
|
</div>
|
|
1090
|
-
<div
|
|
1091
|
-
<
|
|
1092
|
-
|
|
1093
|
-
:
|
|
1092
|
+
<div class="flex-1">
|
|
1093
|
+
<label class="text-[7px] font-black uppercase text-gray-400 block mb-1">Color</label>
|
|
1094
|
+
<div class="flex items-center gap-1.5 bg-gray-50 rounded-xl ring-1 ring-gray-100 px-2 py-1.5">
|
|
1095
|
+
<input type="color" :value="getStyle('titleColor') || '#000000'" @input="setStyle('titleColor', $event.target.value)" class="w-5 h-5 rounded cursor-pointer border-0 bg-transparent p-0" />
|
|
1096
|
+
<input :value="getStyle('titleColor')" @input="setStyle('titleColor', $event.target.value)" placeholder="inherit" class="flex-1 bg-transparent text-[9px] font-mono outline-none w-0" />
|
|
1097
|
+
</div>
|
|
1098
|
+
<div v-if="brandColors.length" class="flex flex-wrap gap-1 mt-1.5">
|
|
1099
|
+
<button v-for="c in brandColors" :key="c" @click="setStyle('titleColor', c)"
|
|
1100
|
+
:title="c" :style="{ background: c }"
|
|
1101
|
+
:class="['w-4 h-4 rounded-full border transition-all', getStyle('titleColor') === c ? 'border-[#3d35ff] scale-110 shadow-sm' : 'border-black/10 hover:scale-110']" />
|
|
1102
|
+
</div>
|
|
1094
1103
|
</div>
|
|
1095
1104
|
</div>
|
|
1096
1105
|
<div class="flex gap-1 mb-2">
|
|
@@ -1112,16 +1121,25 @@ const savePage = async () => {
|
|
|
1112
1121
|
<!-- Body row -->
|
|
1113
1122
|
<div>
|
|
1114
1123
|
<p class="text-[8px] font-black uppercase tracking-widest text-[#3d35ff]/60 mb-2">Body (p, li)</p>
|
|
1115
|
-
<div class="mb-2">
|
|
1116
|
-
<
|
|
1117
|
-
|
|
1118
|
-
<
|
|
1119
|
-
|
|
1124
|
+
<div class="flex gap-2 mb-2">
|
|
1125
|
+
<div class="flex-1">
|
|
1126
|
+
<label class="text-[7px] font-black uppercase text-gray-400 block mb-1">Size (rem)</label>
|
|
1127
|
+
<div class="flex items-center gap-1 bg-gray-50 rounded-xl ring-1 ring-gray-100 px-2">
|
|
1128
|
+
<input type="number" :value="getStyle('bodyFontSize')" @input="setStyle('bodyFontSize', $event.target.value)" min="0.1" max="10" step="0.1" placeholder="—" class="flex-1 bg-transparent py-2.5 text-[10px] font-mono outline-none w-0" />
|
|
1129
|
+
<span class="text-[8px] text-gray-300 shrink-0">rem</span>
|
|
1130
|
+
</div>
|
|
1120
1131
|
</div>
|
|
1121
|
-
<div
|
|
1122
|
-
<
|
|
1123
|
-
|
|
1124
|
-
:
|
|
1132
|
+
<div class="flex-1">
|
|
1133
|
+
<label class="text-[7px] font-black uppercase text-gray-400 block mb-1">Color</label>
|
|
1134
|
+
<div class="flex items-center gap-1.5 bg-gray-50 rounded-xl ring-1 ring-gray-100 px-2 py-1.5">
|
|
1135
|
+
<input type="color" :value="getStyle('bodyColor') || '#000000'" @input="setStyle('bodyColor', $event.target.value)" class="w-5 h-5 rounded cursor-pointer border-0 bg-transparent p-0" />
|
|
1136
|
+
<input :value="getStyle('bodyColor')" @input="setStyle('bodyColor', $event.target.value)" placeholder="inherit" class="flex-1 bg-transparent text-[9px] font-mono outline-none w-0" />
|
|
1137
|
+
</div>
|
|
1138
|
+
<div v-if="brandColors.length" class="flex flex-wrap gap-1 mt-1.5">
|
|
1139
|
+
<button v-for="c in brandColors" :key="c" @click="setStyle('bodyColor', c)"
|
|
1140
|
+
:title="c" :style="{ background: c }"
|
|
1141
|
+
:class="['w-4 h-4 rounded-full border transition-all', getStyle('bodyColor') === c ? 'border-[#3d35ff] scale-110 shadow-sm' : 'border-black/10 hover:scale-110']" />
|
|
1142
|
+
</div>
|
|
1125
1143
|
</div>
|
|
1126
1144
|
</div>
|
|
1127
1145
|
<div class="flex gap-1">
|