@rubytech/create-maxy 0.4.1 → 0.4.2
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/package.json
CHANGED
|
@@ -1415,6 +1415,18 @@ a:hover {
|
|
|
1415
1415
|
border-color: var(--sage);
|
|
1416
1416
|
}
|
|
1417
1417
|
|
|
1418
|
+
.auth-retry-link {
|
|
1419
|
+
font-family: var(--font-body);
|
|
1420
|
+
font-size: 13px;
|
|
1421
|
+
color: var(--text-tertiary);
|
|
1422
|
+
text-decoration: none;
|
|
1423
|
+
margin-top: 12px;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
.auth-retry-link:hover {
|
|
1427
|
+
color: var(--sage);
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1418
1430
|
.admin-pin-error {
|
|
1419
1431
|
color: #c44;
|
|
1420
1432
|
font-size: 14px;
|
|
@@ -346,8 +346,8 @@ export default function AdminPage() {
|
|
|
346
346
|
</button>
|
|
347
347
|
</div>
|
|
348
348
|
</form>
|
|
349
|
-
<a href={authUrl} target="_blank" rel="noopener noreferrer" className="
|
|
350
|
-
|
|
349
|
+
<a href={authUrl} target="_blank" rel="noopener noreferrer" className="auth-retry-link">
|
|
350
|
+
Try again
|
|
351
351
|
</a>
|
|
352
352
|
</>
|
|
353
353
|
)}
|