@atproto/oauth-client-browser-example 0.0.1 → 0.0.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/LICENSE.txt +1 -1
- package/dist/files.json +6 -6
- package/dist/main.css +16 -0
- package/dist/main.js +2369 -5
- package/dist/main.js.map +1 -1
- package/package.json +13 -14
package/dist/main.css
CHANGED
|
@@ -511,6 +511,9 @@ video {
|
|
|
511
511
|
margin-top: 1rem;
|
|
512
512
|
margin-bottom: 1rem;
|
|
513
513
|
}
|
|
514
|
+
.mt-2 {
|
|
515
|
+
margin-top: 0.5rem;
|
|
516
|
+
}
|
|
514
517
|
.block {
|
|
515
518
|
display: block;
|
|
516
519
|
}
|
|
@@ -564,6 +567,10 @@ video {
|
|
|
564
567
|
--tw-bg-opacity: 1;
|
|
565
568
|
background-color: rgb(59 130 246 / var(--tw-bg-opacity));
|
|
566
569
|
}
|
|
570
|
+
.bg-blue-600 {
|
|
571
|
+
--tw-bg-opacity: 1;
|
|
572
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity));
|
|
573
|
+
}
|
|
567
574
|
.bg-blue-700 {
|
|
568
575
|
--tw-bg-opacity: 1;
|
|
569
576
|
background-color: rgb(29 78 216 / var(--tw-bg-opacity));
|
|
@@ -571,6 +578,10 @@ video {
|
|
|
571
578
|
.bg-transparent {
|
|
572
579
|
background-color: transparent;
|
|
573
580
|
}
|
|
581
|
+
.bg-white {
|
|
582
|
+
--tw-bg-opacity: 1;
|
|
583
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
584
|
+
}
|
|
574
585
|
.bg-clip-padding {
|
|
575
586
|
background-clip: padding-box;
|
|
576
587
|
}
|
|
@@ -659,6 +670,11 @@ video {
|
|
|
659
670
|
border-color: rgb(51 65 85 / var(--tw-border-opacity));
|
|
660
671
|
}
|
|
661
672
|
|
|
673
|
+
.dark\:bg-slate-800 {
|
|
674
|
+
--tw-bg-opacity: 1;
|
|
675
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
|
676
|
+
}
|
|
677
|
+
|
|
662
678
|
.dark\:text-neutral-100 {
|
|
663
679
|
--tw-text-opacity: 1;
|
|
664
680
|
color: rgb(245 245 245 / var(--tw-text-opacity));
|