@abhir9/pd-design-system 0.1.15 → 0.1.17
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/index.cjs +53 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +17 -49
- package/dist/index.d.cts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +54 -14
- package/dist/index.js.map +1 -1
- package/dist/styles.css +15 -49
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -535,9 +535,21 @@ video {
|
|
|
535
535
|
--z-popover: 1060;
|
|
536
536
|
--z-sticky: 1020;
|
|
537
537
|
--z-tooltip: 1070;
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
538
|
+
--pd-reset-html-font-size: 10px;
|
|
539
|
+
--pd-reset-html-height: 100vh;
|
|
540
|
+
--pd-reset-html-width: 100vw;
|
|
541
|
+
--pd-reset-html-min-height: 100vh;
|
|
542
|
+
--pd-reset-html-min-width: 100vw;
|
|
543
|
+
--pd-reset-body-margin: 0;
|
|
544
|
+
--pd-reset-body-padding: 0;
|
|
545
|
+
--pd-reset-body-height: 100vh;
|
|
546
|
+
--pd-reset-body-min-height: 100vh;
|
|
547
|
+
--pd-reset-body-width: 100vw;
|
|
548
|
+
--pd-reset-body-min-width: 100vw;
|
|
549
|
+
--pd-reset-box-sizing: border-box;
|
|
550
|
+
--pd-reset-border-width: 0;
|
|
551
|
+
--pd-reset-focus-outline: 0;
|
|
552
|
+
--pd-reset-focus-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
|
|
541
553
|
}
|
|
542
554
|
.dark {
|
|
543
555
|
--accent: #17171C;
|
|
@@ -743,9 +755,6 @@ video {
|
|
|
743
755
|
--z-sticky: 1020;
|
|
744
756
|
--z-tooltip: 1070;
|
|
745
757
|
}
|
|
746
|
-
* {
|
|
747
|
-
box-sizing: border-box;
|
|
748
|
-
}
|
|
749
758
|
button:focus-visible,
|
|
750
759
|
input:focus-visible,
|
|
751
760
|
select:focus-visible,
|
|
@@ -753,49 +762,6 @@ textarea:focus-visible {
|
|
|
753
762
|
outline: 2px solid var(--intent-primary);
|
|
754
763
|
outline-offset: 2px;
|
|
755
764
|
}
|
|
756
|
-
* {
|
|
757
|
-
border-color: var(--border-primary);
|
|
758
|
-
}
|
|
759
|
-
body {
|
|
760
|
-
background-color: var(--background-primary);
|
|
761
|
-
color: var(--content-primary);
|
|
762
|
-
}
|
|
763
|
-
html {
|
|
764
|
-
font-size: 10px;
|
|
765
|
-
}
|
|
766
|
-
html,
|
|
767
|
-
body {
|
|
768
|
-
height: 100vh;
|
|
769
|
-
min-height: 100vh;
|
|
770
|
-
width: 100vw;
|
|
771
|
-
min-width: 100vw;
|
|
772
|
-
margin: 0;
|
|
773
|
-
padding: 0;
|
|
774
|
-
}
|
|
775
|
-
body {
|
|
776
|
-
font-family: var(--font-sans);
|
|
777
|
-
-webkit-font-smoothing: antialiased;
|
|
778
|
-
-moz-osx-font-smoothing: grayscale;
|
|
779
|
-
}
|
|
780
|
-
*,
|
|
781
|
-
::before,
|
|
782
|
-
::after {
|
|
783
|
-
box-sizing: border-box;
|
|
784
|
-
border-width: 0;
|
|
785
|
-
}
|
|
786
|
-
:focus {
|
|
787
|
-
outline: 0 !important;
|
|
788
|
-
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
|
|
789
|
-
}
|
|
790
|
-
input:-webkit-autofill,
|
|
791
|
-
input:-webkit-autofill:hover,
|
|
792
|
-
input:-webkit-autofill:focus,
|
|
793
|
-
input:-webkit-autofill:active {
|
|
794
|
-
background-color: transparent;
|
|
795
|
-
-webkit-transition: background-color 5000s ease-in-out 0s;
|
|
796
|
-
transition: background-color 5000s ease-in-out 0s;
|
|
797
|
-
-webkit-text-fill-color: var(--content-primary);
|
|
798
|
-
}
|
|
799
765
|
.container {
|
|
800
766
|
width: 100%;
|
|
801
767
|
}
|