@pitvox/partner-react 0.2.1 → 0.3.0
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/README.md +40 -6
- package/dist/index.cjs +1 -1
- package/dist/index.js +636 -625
- package/dist/styles.css +44 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1138,6 +1138,50 @@
|
|
|
1138
1138
|
white-space: nowrap;
|
|
1139
1139
|
}
|
|
1140
1140
|
|
|
1141
|
+
/* ─── Registration CTA ───────────────────────────────────────── */
|
|
1142
|
+
|
|
1143
|
+
.pvx-comp-register-cta {
|
|
1144
|
+
display: flex;
|
|
1145
|
+
align-items: center;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
.pvx-comp-register-link {
|
|
1149
|
+
display: inline-block;
|
|
1150
|
+
padding: 0.5rem 1.25rem;
|
|
1151
|
+
border-radius: var(--pvx-radius-sm);
|
|
1152
|
+
font-size: 0.875rem;
|
|
1153
|
+
font-weight: 500;
|
|
1154
|
+
text-decoration: none;
|
|
1155
|
+
background: var(--pvx-accent);
|
|
1156
|
+
color: #fff;
|
|
1157
|
+
transition: background 150ms;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.pvx-comp-register-link:hover {
|
|
1161
|
+
background: var(--pvx-accent-hover);
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.pvx-comp-register-btn {
|
|
1165
|
+
padding: 0.5rem 1.25rem;
|
|
1166
|
+
border-radius: var(--pvx-radius-sm);
|
|
1167
|
+
font-size: 0.875rem;
|
|
1168
|
+
font-weight: 500;
|
|
1169
|
+
border: none;
|
|
1170
|
+
cursor: pointer;
|
|
1171
|
+
background: var(--pvx-accent);
|
|
1172
|
+
color: #fff;
|
|
1173
|
+
transition: background 150ms;
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.pvx-comp-register-btn:hover {
|
|
1177
|
+
background: var(--pvx-accent-hover);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.pvx-comp-register-btn:disabled {
|
|
1181
|
+
opacity: 0.5;
|
|
1182
|
+
cursor: not-allowed;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1141
1185
|
/* ═══════════════════════════════════════════════════════════════════════════
|
|
1142
1186
|
Driver Dashboard Components
|
|
1143
1187
|
═══════════════════════════════════════════════════════════════════════════ */
|
package/package.json
CHANGED