exploreda 0.0.5 → 0.0.6

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.
@@ -1,3 +1,80 @@
1
+ /* src/components/charts/Markdown/styles.css */
2
+ .tiptap {
3
+ :first-child {
4
+ margin-top: 0;
5
+ }
6
+ ul,
7
+ ol {
8
+ padding: 0 1rem;
9
+ margin: 1.25rem 1rem 1.25rem 0.4rem;
10
+ list-style-type: disc;
11
+ li p {
12
+ margin-top: 0.25em;
13
+ margin-bottom: 0.25em;
14
+ }
15
+ }
16
+ h1,
17
+ h2,
18
+ h3,
19
+ h4,
20
+ h5,
21
+ h6 {
22
+ line-height: 1.1;
23
+ margin-top: 2.5rem;
24
+ text-wrap: pretty;
25
+ }
26
+ h1,
27
+ h2 {
28
+ margin-top: 3.5rem;
29
+ margin-bottom: 1.5rem;
30
+ }
31
+ h1 {
32
+ font-size: 1.4rem;
33
+ }
34
+ h2 {
35
+ font-size: 1.2rem;
36
+ }
37
+ h3 {
38
+ font-size: 1.1rem;
39
+ }
40
+ h4,
41
+ h5,
42
+ h6 {
43
+ font-size: 1rem;
44
+ }
45
+ code {
46
+ background-color: var(--purple-light);
47
+ border-radius: 0.4rem;
48
+ color: var(--black);
49
+ font-size: 0.85rem;
50
+ padding: 0.25em 0.3em;
51
+ }
52
+ pre {
53
+ background: var(--black);
54
+ border-radius: 0.5rem;
55
+ color: var(--white);
56
+ font-family: "JetBrainsMono", monospace;
57
+ margin: 1.5rem 0;
58
+ padding: 0.75rem 1rem;
59
+ code {
60
+ background: none;
61
+ color: inherit;
62
+ font-size: 0.8rem;
63
+ padding: 0;
64
+ }
65
+ }
66
+ blockquote {
67
+ border-left: 3px solid var(--gray-3);
68
+ margin: 1.5rem 0;
69
+ padding-left: 1rem;
70
+ }
71
+ hr {
72
+ border: none;
73
+ border-top: 1px solid var(--gray-2);
74
+ margin: 2rem 0;
75
+ }
76
+ }
77
+
1
78
  /* src/index.css */
2
79
  @layer theme, base, components, utilities;
3
80
  @layer theme {
@@ -441,6 +518,9 @@
441
518
  max-width: 96rem;
442
519
  }
443
520
  }
521
+ .m-1 {
522
+ margin: calc(var(--spacing) * 1);
523
+ }
444
524
  .-mx-1 {
445
525
  margin-inline: calc(var(--spacing) * -1);
446
526
  }
@@ -819,6 +899,9 @@
819
899
  .flex-shrink-0 {
820
900
  flex-shrink: 0;
821
901
  }
902
+ .shrink {
903
+ flex-shrink: 1;
904
+ }
822
905
  .shrink-0 {
823
906
  flex-shrink: 0;
824
907
  }
@@ -1496,6 +1579,9 @@
1496
1579
  .uppercase {
1497
1580
  text-transform: uppercase;
1498
1581
  }
1582
+ .italic {
1583
+ font-style: italic;
1584
+ }
1499
1585
  .ordinal {
1500
1586
  --tw-ordinal: ordinal;
1501
1587
  font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);