robindoc 0.0.0-experimental-fbc3bd2 → 0.0.0-experimental-dd4fde6

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.
Files changed (2) hide show
  1. package/lib/styles.css +304 -304
  2. package/package.json +1 -1
package/lib/styles.css CHANGED
@@ -92,6 +92,43 @@
92
92
  width: 100%;
93
93
  left: 0;
94
94
  }
95
+ }.r-footer {
96
+ border-top: 1px solid var(--r-main-300);
97
+ }
98
+
99
+ .r-footer-container.r-footer-container {
100
+ padding: 16px 24px;
101
+ }
102
+
103
+ .r-footer-row {
104
+ display: flex;
105
+ justify-content: space-between;
106
+ align-items: center;
107
+ gap: 32px;
108
+ }
109
+
110
+ .r-footer-additional {
111
+ margin-top: 20px;
112
+ justify-content: flex-end;
113
+ }
114
+
115
+ .r-copyright {
116
+ color: var(--r-main-800);
117
+ }
118
+
119
+ .r-powered {
120
+ font-size: 14px;
121
+ display: block;
122
+ color: var(--r-main-600);
123
+ }
124
+
125
+ .r-powered-link {
126
+ font-weight: 600;
127
+ text-decoration: none;
128
+ color: var(--r-main-950);
129
+ }
130
+ .r-powered-link:hover {
131
+ color: var(--r-primary-900);
95
132
  }.r-root {
96
133
  --r-header-height: 60px;
97
134
  position: relative;
@@ -325,61 +362,6 @@
325
362
  --r-cl-60: #86181d;
326
363
  --r-cl-61: #144620;
327
364
  --r-cl-62: #c24e00;
328
- }.r-footer {
329
- border-top: 1px solid var(--r-main-300);
330
- }
331
-
332
- .r-footer-container.r-footer-container {
333
- padding: 16px 24px;
334
- }
335
-
336
- .r-footer-row {
337
- display: flex;
338
- justify-content: space-between;
339
- align-items: center;
340
- gap: 32px;
341
- }
342
-
343
- .r-footer-additional {
344
- margin-top: 20px;
345
- justify-content: flex-end;
346
- }
347
-
348
- .r-copyright {
349
- color: var(--r-main-800);
350
- }
351
-
352
- .r-powered {
353
- font-size: 14px;
354
- display: block;
355
- color: var(--r-main-600);
356
- }
357
-
358
- .r-powered-link {
359
- font-weight: 600;
360
- text-decoration: none;
361
- color: var(--r-main-950);
362
- }
363
- .r-powered-link:hover {
364
- color: var(--r-primary-900);
365
- }.r-page-container {
366
- min-height: calc(100dvh - var(--r-header-height));
367
- overflow-wrap: break-word;
368
- box-sizing: border-box;
369
- }.r-blog-container {
370
- min-height: calc(100dvh - var(--r-header-height));
371
- overflow-wrap: break-word;
372
- box-sizing: border-box;
373
- }
374
- @media screen and (width >= 1180px) {
375
- .r-blog-container {
376
- display: grid;
377
- justify-content: space-between;
378
- column-gap: 40px;
379
- grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
380
- grid-template-columns: 760px 220px;
381
- grid-template-rows: auto 1fr auto;
382
- }
383
365
  }.r-docs-container {
384
366
  min-height: calc(100dvh - var(--r-header-height));
385
367
  overflow-wrap: break-word;
@@ -402,6 +384,24 @@
402
384
  grid-template-columns: 200px 640px 238px;
403
385
  grid-template-rows: auto 1fr auto;
404
386
  }
387
+ }.r-blog-container {
388
+ min-height: calc(100dvh - var(--r-header-height));
389
+ overflow-wrap: break-word;
390
+ box-sizing: border-box;
391
+ }
392
+ @media screen and (width >= 1180px) {
393
+ .r-blog-container {
394
+ display: grid;
395
+ justify-content: space-between;
396
+ column-gap: 40px;
397
+ grid-template-areas: "breadcrumbs contents" "content contents" "pagination contents";
398
+ grid-template-columns: 760px 220px;
399
+ grid-template-rows: auto 1fr auto;
400
+ }
401
+ }.r-page-container {
402
+ min-height: calc(100dvh - var(--r-header-height));
403
+ overflow-wrap: break-word;
404
+ box-sizing: border-box;
405
405
  }.keylink-to-content {
406
406
  position: absolute !important;
407
407
  top: 8px;
@@ -840,6 +840,103 @@
840
840
  .r-header-input:checked ~ .r-header-burger .r-burger-line._bottom {
841
841
  transform: translateY(0) rotate(-45deg);
842
842
  margin-top: 0;
843
+ }.r-dropdown {
844
+ position: relative;
845
+ color: var(--r-main-600);
846
+ transition: color 0.2s 0.1s;
847
+ }
848
+ .r-dropdown:hover, .r-dropdown:focus-within {
849
+ color: var(--r-main-950);
850
+ }
851
+ .r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
852
+ visibility: visible;
853
+ pointer-events: all;
854
+ transform: translateY(20px);
855
+ opacity: 1;
856
+ }
857
+ .r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
858
+ transform: rotate(180deg);
859
+ }
860
+
861
+ .r-dropdown-summary {
862
+ display: flex;
863
+ justify-content: space-between;
864
+ align-items: center;
865
+ width: 100%;
866
+ position: relative;
867
+ color: inherit;
868
+ cursor: pointer;
869
+ padding: 10px 4px;
870
+ font-size: 16px;
871
+ border: 0;
872
+ background: none;
873
+ z-index: 1;
874
+ box-sizing: border-box;
875
+ }
876
+
877
+ .r-dropdown-chevron {
878
+ display: block;
879
+ margin-left: 6px;
880
+ transition: transform 0.3s 0.1s;
881
+ box-sizing: border-box;
882
+ }
883
+
884
+ .r-dropdown-drop {
885
+ list-style: none;
886
+ position: absolute;
887
+ top: 16px;
888
+ left: -12px;
889
+ visibility: hidden;
890
+ pointer-events: none;
891
+ opacity: 0;
892
+ transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
893
+ background-color: var(--r-main-50);
894
+ border: 1px solid var(--r-main-100);
895
+ border-radius: 8px;
896
+ margin: 0;
897
+ padding: 2px 6px;
898
+ min-width: 120px;
899
+ max-width: 180px;
900
+ box-sizing: border-box;
901
+ }
902
+
903
+ .r-dropdown-link {
904
+ display: block;
905
+ width: 100%;
906
+ text-decoration: none;
907
+ color: var(--r-main-700);
908
+ padding: 4px 8px;
909
+ margin-top: 4px;
910
+ margin-bottom: 4px;
911
+ border-radius: 4px;
912
+ transition: background-color 0.2s;
913
+ box-sizing: border-box;
914
+ }
915
+ .r-dropdown-link:hover {
916
+ color: var(--r-main-900);
917
+ background-color: var(--r-main-100);
918
+ }
919
+
920
+ .r-dropdown-link._active {
921
+ color: var(--r-primary-700);
922
+ }.r-header-social {
923
+ display: flex;
924
+ flex: 1;
925
+ justify-content: flex-end;
926
+ }
927
+ @media screen and (width >= 1024px) {
928
+ .r-header-social {
929
+ flex: none;
930
+ justify-content: unset;
931
+ }
932
+ }
933
+
934
+ .r-header-social-git {
935
+ color: var(--r-main-700);
936
+ transition: color 0.2s;
937
+ }
938
+ .r-header-social-git:hover, .r-header-social-git:focus {
939
+ color: var(--r-main-950);
843
940
  }.r-search-btn {
844
941
  position: relative;
845
942
  border-radius: 6px;
@@ -1023,125 +1120,28 @@
1023
1120
  font-size: 14px;
1024
1121
  color: var(--r-main-600);
1025
1122
  margin: 12px 0 0;
1026
- }.r-dropdown {
1123
+ }.r-container {
1124
+ max-width: 1180px;
1125
+ padding-right: 12px;
1126
+ padding-left: 12px;
1127
+ margin-right: auto;
1128
+ margin-left: auto;
1129
+ box-sizing: border-box;
1130
+ }.r-theme-switcher {
1027
1131
  position: relative;
1028
- color: var(--r-main-600);
1029
- transition: color 0.2s 0.1s;
1030
- }
1031
- .r-dropdown:hover, .r-dropdown:focus-within {
1032
- color: var(--r-main-950);
1033
- }
1034
- .r-dropdown:hover .r-dropdown-drop, .r-dropdown:focus-within .r-dropdown-drop {
1035
- visibility: visible;
1036
- pointer-events: all;
1037
- transform: translateY(20px);
1038
- opacity: 1;
1039
- }
1040
- .r-dropdown:hover .r-dropdown-chevron, .r-dropdown:focus-within .r-dropdown-chevron {
1041
- transform: rotate(180deg);
1042
- }
1043
-
1044
- .r-dropdown-summary {
1045
1132
  display: flex;
1046
- justify-content: space-between;
1047
- align-items: center;
1048
- width: 100%;
1049
- position: relative;
1050
- color: inherit;
1051
- cursor: pointer;
1052
- padding: 10px 4px;
1053
- font-size: 16px;
1054
- border: 0;
1055
- background: none;
1056
- z-index: 1;
1133
+ gap: 4px;
1134
+ width: 109px;
1135
+ height: 37px;
1136
+ padding: 2px;
1137
+ background-color: var(--r-main-100);
1138
+ border: 1px solid var(--r-main-200);
1139
+ border-radius: 100px;
1057
1140
  box-sizing: border-box;
1058
1141
  }
1059
-
1060
- .r-dropdown-chevron {
1061
- display: block;
1062
- margin-left: 6px;
1063
- transition: transform 0.3s 0.1s;
1064
- box-sizing: border-box;
1065
- }
1066
-
1067
- .r-dropdown-drop {
1068
- list-style: none;
1069
- position: absolute;
1070
- top: 16px;
1071
- left: -12px;
1072
- visibility: hidden;
1073
- pointer-events: none;
1074
- opacity: 0;
1075
- transition: transform 0.3s 0.1s, opacity 0.3s 0.1s, visibility 0.3s 0.1s;
1076
- background-color: var(--r-main-50);
1077
- border: 1px solid var(--r-main-100);
1078
- border-radius: 8px;
1079
- margin: 0;
1080
- padding: 2px 6px;
1081
- min-width: 120px;
1082
- max-width: 180px;
1083
- box-sizing: border-box;
1084
- }
1085
-
1086
- .r-dropdown-link {
1087
- display: block;
1088
- width: 100%;
1089
- text-decoration: none;
1090
- color: var(--r-main-700);
1091
- padding: 4px 8px;
1092
- margin-top: 4px;
1093
- margin-bottom: 4px;
1094
- border-radius: 4px;
1095
- transition: background-color 0.2s;
1096
- box-sizing: border-box;
1097
- }
1098
- .r-dropdown-link:hover {
1099
- color: var(--r-main-900);
1100
- background-color: var(--r-main-100);
1101
- }
1102
-
1103
- .r-dropdown-link._active {
1104
- color: var(--r-primary-700);
1105
- }.r-header-social {
1106
- display: flex;
1107
- flex: 1;
1108
- justify-content: flex-end;
1109
- }
1110
- @media screen and (width >= 1024px) {
1111
- .r-header-social {
1112
- flex: none;
1113
- justify-content: unset;
1114
- }
1115
- }
1116
-
1117
- .r-header-social-git {
1118
- color: var(--r-main-700);
1119
- transition: color 0.2s;
1120
- }
1121
- .r-header-social-git:hover, .r-header-social-git:focus {
1122
- color: var(--r-main-950);
1123
- }.r-container {
1124
- max-width: 1180px;
1125
- padding-right: 12px;
1126
- padding-left: 12px;
1127
- margin-right: auto;
1128
- margin-left: auto;
1129
- box-sizing: border-box;
1130
- }.r-theme-switcher {
1131
- position: relative;
1132
- display: flex;
1133
- gap: 4px;
1134
- width: 109px;
1135
- height: 37px;
1136
- padding: 2px;
1137
- background-color: var(--r-main-100);
1138
- border: 1px solid var(--r-main-200);
1139
- border-radius: 100px;
1140
- box-sizing: border-box;
1141
- }
1142
- .r-theme-switcher::before {
1143
- content: "";
1144
- position: absolute;
1142
+ .r-theme-switcher::before {
1143
+ content: "";
1144
+ position: absolute;
1145
1145
  display: block;
1146
1146
  height: 32px;
1147
1147
  width: 32px;
@@ -1254,78 +1254,6 @@
1254
1254
  .r-breadcrumb-title {
1255
1255
  color: var(--r-main-950);
1256
1256
  font-weight: 600;
1257
- }.r-pagination {
1258
- grid-area: pagination;
1259
- display: grid;
1260
- grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
1261
- gap: 16px;
1262
- margin-bottom: 40px;
1263
- }
1264
-
1265
- .r-pagination-item {
1266
- position: relative;
1267
- padding-top: 8px;
1268
- padding-bottom: 8px;
1269
- text-decoration: none;
1270
- font-size: 14px;
1271
- color: var(--r-main-800);
1272
- }
1273
- .r-pagination-item:hover {
1274
- color: var(--r-main-950);
1275
- }
1276
-
1277
- .r-pagination-item._prev {
1278
- padding-left: 28px;
1279
- }
1280
-
1281
- .r-pagination-item._next {
1282
- text-align: right;
1283
- padding-right: 28px;
1284
- }
1285
-
1286
- .r-pagination-text {
1287
- display: block;
1288
- line-height: 2;
1289
- }
1290
-
1291
- .r-pagination-title {
1292
- font-weight: 600;
1293
- font-size: 16px;
1294
- }
1295
-
1296
- .r-pagination-icon {
1297
- position: absolute;
1298
- top: 50%;
1299
- transform: translateY(-50%);
1300
- transition: transform 0.2s;
1301
- }
1302
-
1303
- .r-pagination-icon._prev {
1304
- left: 0;
1305
- }
1306
- .r-pagination-item:hover .r-pagination-icon._prev {
1307
- transform: translate(-4px, -50%);
1308
- }
1309
- @media screen and (width >= 1180px) {
1310
- .r-pagination-item:hover .r-pagination-icon._prev {
1311
- transform: translate(-8px, -50%);
1312
- }
1313
- }
1314
-
1315
- .r-pagination-icon._next {
1316
- right: 0;
1317
- }
1318
- .r-pagination-item:hover .r-pagination-icon._next {
1319
- transform: translate(4px, -50%);
1320
- }
1321
- @media screen and (width >= 1180px) {
1322
- .r-pagination-item:hover .r-pagination-icon._next {
1323
- transform: translate(8px, -50%);
1324
- }
1325
- }
1326
-
1327
- .r-pagination-svg {
1328
- display: block;
1329
1257
  }.r-contents {
1330
1258
  grid-area: contents;
1331
1259
  }
@@ -1565,9 +1493,83 @@
1565
1493
  }
1566
1494
  .r-contents-git:hover {
1567
1495
  color: var(--r-main-900);
1496
+ }.r-pagination {
1497
+ grid-area: pagination;
1498
+ display: grid;
1499
+ grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
1500
+ gap: 16px;
1501
+ margin-bottom: 40px;
1502
+ }
1503
+
1504
+ .r-pagination-item {
1505
+ position: relative;
1506
+ padding-top: 8px;
1507
+ padding-bottom: 8px;
1508
+ text-decoration: none;
1509
+ font-size: 14px;
1510
+ color: var(--r-main-800);
1511
+ }
1512
+ .r-pagination-item:hover {
1513
+ color: var(--r-main-950);
1514
+ }
1515
+
1516
+ .r-pagination-item._prev {
1517
+ padding-left: 28px;
1518
+ }
1519
+
1520
+ .r-pagination-item._next {
1521
+ text-align: right;
1522
+ padding-right: 28px;
1523
+ }
1524
+
1525
+ .r-pagination-text {
1526
+ display: block;
1527
+ line-height: 2;
1528
+ }
1529
+
1530
+ .r-pagination-title {
1531
+ font-weight: 600;
1532
+ font-size: 16px;
1533
+ }
1534
+
1535
+ .r-pagination-icon {
1536
+ position: absolute;
1537
+ top: 50%;
1538
+ transform: translateY(-50%);
1539
+ transition: transform 0.2s;
1540
+ }
1541
+
1542
+ .r-pagination-icon._prev {
1543
+ left: 0;
1544
+ }
1545
+ .r-pagination-item:hover .r-pagination-icon._prev {
1546
+ transform: translate(-4px, -50%);
1547
+ }
1548
+ @media screen and (width >= 1180px) {
1549
+ .r-pagination-item:hover .r-pagination-icon._prev {
1550
+ transform: translate(-8px, -50%);
1551
+ }
1552
+ }
1553
+
1554
+ .r-pagination-icon._next {
1555
+ right: 0;
1556
+ }
1557
+ .r-pagination-item:hover .r-pagination-icon._next {
1558
+ transform: translate(4px, -50%);
1559
+ }
1560
+ @media screen and (width >= 1180px) {
1561
+ .r-pagination-item:hover .r-pagination-icon._next {
1562
+ transform: translate(8px, -50%);
1563
+ }
1564
+ }
1565
+
1566
+ .r-pagination-svg {
1567
+ display: block;
1568
1568
  }.r-last-modified {
1569
1569
  color: var(--r-main-700);
1570
1570
  margin-block-start: 16px;
1571
+ }.r-git-logo {
1572
+ display: block;
1571
1573
  }.r-backdrop {
1572
1574
  position: fixed;
1573
1575
  top: 0;
@@ -1584,8 +1586,6 @@
1584
1586
  opacity: 1;
1585
1587
  visibility: visible;
1586
1588
  pointer-events: all;
1587
- }.r-git-logo {
1588
- display: block;
1589
1589
  }.r-external-mark {
1590
1590
  position: relative;
1591
1591
  vertical-align: text-top;
@@ -1617,6 +1617,25 @@
1617
1617
  background-color: currentColor;
1618
1618
  border-radius: 0 0 0 4px;
1619
1619
  box-sizing: border-box;
1620
+ }.r-anchor-heading:hover .r-anchor-heading-link {
1621
+ visibility: visible;
1622
+ opacity: 1;
1623
+ }
1624
+
1625
+ .r-anchor-heading-link {
1626
+ visibility: hidden;
1627
+ opacity: 0;
1628
+ transition: opacity 0.3s allow-discrete;
1629
+ padding-inline: 8px;
1630
+ margin-inline-start: -4px;
1631
+ color: var(--r-main-600);
1632
+ text-decoration: none;
1633
+ }
1634
+ .r-anchor-heading-link:hover {
1635
+ color: var(--r-primary-800);
1636
+ }
1637
+ .r-anchor-heading-link::after {
1638
+ content: "#";
1620
1639
  }.r-code-section {
1621
1640
  position: relative;
1622
1641
  margin-block-start: 1.5em;
@@ -1668,25 +1687,6 @@
1668
1687
 
1669
1688
  .r-code-section-filename {
1670
1689
  font-family: var(--monospace-font, monospace, monospace);
1671
- }.r-anchor-heading:hover .r-anchor-heading-link {
1672
- visibility: visible;
1673
- opacity: 1;
1674
- }
1675
-
1676
- .r-anchor-heading-link {
1677
- visibility: hidden;
1678
- opacity: 0;
1679
- transition: opacity 0.3s allow-discrete;
1680
- padding-inline: 8px;
1681
- margin-inline-start: -4px;
1682
- color: var(--r-main-600);
1683
- text-decoration: none;
1684
- }
1685
- .r-anchor-heading-link:hover {
1686
- color: var(--r-primary-800);
1687
- }
1688
- .r-anchor-heading-link::after {
1689
- content: "#";
1690
1690
  }.r-block {
1691
1691
  width: 100%;
1692
1692
  overflow: auto;
@@ -1882,6 +1882,34 @@
1882
1882
  min-width: 24px;
1883
1883
  text-align: center;
1884
1884
  box-sizing: border-box;
1885
+ }.r-copy-text {
1886
+ position: relative;
1887
+ cursor: pointer;
1888
+ background: none;
1889
+ border: 0;
1890
+ padding: 0;
1891
+ font: inherit;
1892
+ padding: 6px 0;
1893
+ }
1894
+ .r-copy-text:hover {
1895
+ color: var(--r-main-950);
1896
+ }
1897
+ .r-copy-text::before {
1898
+ content: "";
1899
+ position: absolute;
1900
+ bottom: 0;
1901
+ left: 0;
1902
+ width: 100%;
1903
+ height: 1px;
1904
+ background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
1905
+ transition: background 0.2s;
1906
+ box-sizing: border-box;
1907
+ opacity: 0.6;
1908
+ }
1909
+
1910
+ .r-copy-text:active,
1911
+ .r-copy-text._active {
1912
+ color: var(--r-success);
1885
1913
  }.r-copy-button {
1886
1914
  position: relative;
1887
1915
  padding: 6px;
@@ -1925,34 +1953,6 @@
1925
1953
 
1926
1954
  .r-copy-button-svg {
1927
1955
  display: block;
1928
- }.r-copy-text {
1929
- position: relative;
1930
- cursor: pointer;
1931
- background: none;
1932
- border: 0;
1933
- padding: 0;
1934
- font: inherit;
1935
- padding: 6px 0;
1936
- }
1937
- .r-copy-text:hover {
1938
- color: var(--r-main-950);
1939
- }
1940
- .r-copy-text::before {
1941
- content: "";
1942
- position: absolute;
1943
- bottom: 0;
1944
- left: 0;
1945
- width: 100%;
1946
- height: 1px;
1947
- background: linear-gradient(to right, currentColor 30%, transparent 0%, transparent 80%, currentColor 80%) repeat-x 0px/8px;
1948
- transition: background 0.2s;
1949
- box-sizing: border-box;
1950
- opacity: 0.6;
1951
- }
1952
-
1953
- .r-copy-text:active,
1954
- .r-copy-text._active {
1955
- color: var(--r-success);
1956
1956
  }.r-content-link {
1957
1957
  text-decoration: none;
1958
1958
  color: inherit;
@@ -2002,6 +2002,17 @@
2002
2002
  background-color: currentColor;
2003
2003
  border-radius: 0 0 0 4px;
2004
2004
  box-sizing: border-box;
2005
+ }.r-li {
2006
+ line-height: 1.8;
2007
+ margin-block-start: 6px;
2008
+ margin-block-end: 6px;
2009
+ }
2010
+
2011
+ .r-li > .r-ul,
2012
+ .r-li > .r-ol {
2013
+ padding-inline-start: 20px;
2014
+ margin-block-start: 6px;
2015
+ margin-block-end: 6px;
2005
2016
  }.r-ol {
2006
2017
  padding-inline-start: 2rem;
2007
2018
  margin-block-start: 1em;
@@ -2019,17 +2030,6 @@
2019
2030
  padding: 6px 12px;
2020
2031
  border-bottom: 1px solid var(--r-main-400);
2021
2032
  border-collapse: collapse;
2022
- }.r-li {
2023
- line-height: 1.8;
2024
- margin-block-start: 6px;
2025
- margin-block-end: 6px;
2026
- }
2027
-
2028
- .r-li > .r-ul,
2029
- .r-li > .r-ol {
2030
- padding-inline-start: 20px;
2031
- margin-block-start: 6px;
2032
- margin-block-end: 6px;
2033
2033
  }.r-th {
2034
2034
  padding: 6px 12px;
2035
2035
  border-top: 1px solid var(--r-main-500);
@@ -2037,6 +2037,8 @@
2037
2037
  border-collapse: collapse;
2038
2038
  }.r-thead {
2039
2039
  background-color: var(--r-main-100);
2040
+ }.r-task-ol {
2041
+ list-style: none;
2040
2042
  }.r-task-li.r-task-li {
2041
2043
  margin-block-start: 2px;
2042
2044
  margin-block-end: 2px;
@@ -2066,8 +2068,6 @@
2066
2068
 
2067
2069
  .r-task-label-text {
2068
2070
  vertical-align: middle;
2069
- }.r-task-ol {
2070
- list-style: none;
2071
2071
  }.r-task-ul {
2072
2072
  list-style: none;
2073
2073
  }.r-tooltip {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robindoc",
3
- "version": "0.0.0-experimental-fbc3bd2",
3
+ "version": "0.0.0-experimental-dd4fde6",
4
4
  "description": "Robindoc is a framework for automatically creating documentation websites based on markdown files, built on React.js Server Components",
5
5
  "main": "./lib/index.js",
6
6
  "scripts": {