hds-web 1.17.8 → 1.18.0

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 (45) hide show
  1. package/.github/workflows/chromatic.yml +1 -1
  2. package/dist/index.css +2 -2
  3. package/dist/index.es.css +2 -2
  4. package/dist/index.es.js +3 -3
  5. package/dist/index.js +5 -5
  6. package/package.json +2 -2
  7. package/src/HDS/assets/icons/Discord.svg +3 -0
  8. package/src/HDS/assets/icons/Octoface.svg +3 -0
  9. package/src/HDS/assets/icons/asterisk-02.svg +1 -1
  10. package/src/HDS/assets/icons/book-open-01.svg +1 -1
  11. package/src/HDS/assets/icons/box.svg +1 -1
  12. package/src/HDS/assets/icons/check-square-broken.svg +1 -1
  13. package/src/HDS/assets/icons/check-square.svg +1 -1
  14. package/src/HDS/assets/icons/code-browser.svg +1 -1
  15. package/src/HDS/assets/icons/cube-01.svg +1 -1
  16. package/src/HDS/assets/icons/data.svg +4 -4
  17. package/src/HDS/assets/icons/database-01.svg +1 -1
  18. package/src/HDS/assets/icons/eye.svg +2 -2
  19. package/src/HDS/assets/icons/file-02.svg +1 -1
  20. package/src/HDS/assets/icons/git-pull-request.svg +1 -1
  21. package/src/HDS/assets/icons/graduation-hat-02.svg +1 -1
  22. package/src/HDS/assets/icons/hasura.svg +2 -2
  23. package/src/HDS/assets/icons/heading-square.svg +1 -1
  24. package/src/HDS/assets/icons/heart-hand.svg +1 -1
  25. package/src/HDS/assets/icons/intersect-circle.svg +2 -2
  26. package/src/HDS/assets/icons/layers-three-01.svg +1 -1
  27. package/src/HDS/assets/icons/lightning-01.svg +1 -1
  28. package/src/HDS/assets/icons/meetup.svg +4 -0
  29. package/src/HDS/assets/icons/pen-tool-02.svg +1 -1
  30. package/src/HDS/assets/icons/pie-chart-01.svg +1 -1
  31. package/src/HDS/assets/icons/route.svg +1 -1
  32. package/src/HDS/assets/icons/shield-tick.svg +1 -1
  33. package/src/HDS/assets/icons/speedometer-03.svg +1 -1
  34. package/src/HDS/assets/icons/star-06.svg +1 -1
  35. package/src/HDS/assets/icons/users-01.svg +1 -1
  36. package/src/HDS/assets/icons/video-recorder.svg +2 -2
  37. package/src/HDS/components/Cards/BrandCard/brandCard.js +1 -4
  38. package/src/HDS/components/Cards/Dropdown/v3Dropdown.js +1 -1
  39. package/src/HDS/components/Cards/Menu/flyoutA.js +4 -4
  40. package/src/HDS/components/Cards/Menu/flyoutB.js +58 -37
  41. package/src/HDS/components/Headers/v3Header.js +41 -41
  42. package/src/HDS/components/common-components/Icon/IconMap.js +17 -2
  43. package/src/HDS/helpers/Grid/storyLayout.js +8 -2
  44. package/src/styles/tailwind.css +80 -38
  45. package/tailwind.config.js +8 -0
@@ -67,7 +67,7 @@ export default function V3Header(props) {
67
67
  const renderDropdown = (primaryCard, secondaryCardArr, tertiaryCard) => (
68
68
  <div>
69
69
  <div>
70
- <hr className="w-full h-9 border-0" />
70
+ <hr className="w-full h-6 border-0" />
71
71
  </div>
72
72
  <div className="p-2 bg-neutral-150 rounded-3xl">
73
73
  <V3Dropdown
@@ -359,7 +359,7 @@ export default function V3Header(props) {
359
359
 
360
360
  <div className="bg-neutral-100 h-[calc(100%-80px)] rounded-2xl overflow-y-scroll scrollbar-hide">
361
361
 
362
- <div className='pt-6 pb-4 tb:mr-[16px] mr-[34px] min-h-[36px] flex flex-row justify-between items-center sticky top-0 bg-neutral-100 z-50 '>
362
+ <div className='pt-6 pb-4 tb:mr-[12px] mr-[30px] min-h-[36px] flex flex-row justify-between items-center sticky top-0 bg-neutral-100 z-50 '>
363
363
  {(isCompany || isDeveloper || isProduct) &&
364
364
  (
365
365
  <div
@@ -397,7 +397,7 @@ export default function V3Header(props) {
397
397
  key='hey'
398
398
  exit={{ opacity: 0, y: [0, 300] }}
399
399
  animate={{ opacity: 1, y: [300, 0] }}
400
- transition={{ duration: 0.4, exit: { duration: 0.3 }, opacity: { ease: "easeIn" } }}
400
+ transition={{ duration: 0.2, exit: { duration: 0.3 }, opacity: { ease: "easeIn" } }}
401
401
  when={isProduct || isDeveloper || isCompany}
402
402
 
403
403
  className="flex flex-col justify-between "
@@ -493,60 +493,60 @@ V3Header.defaultProps = {
493
493
  {
494
494
  title: 'Product',
495
495
  primaryCard: {
496
- iconVariant: 'hasura',
496
+ iconVariant: 'layersthree01',
497
497
  mainDescription: 'Choose from our open source community edition, fully managed cloud edition or custom enterprise',
498
- primaryBtnLabel: 'Hasura Product',
498
+ primaryBtnLabel: 'Hasura platform',
499
499
  strokeClass: 'stroke-neutral-800',
500
500
  secondaryBtn: [
501
- { cta_leftVariantIcon: 'home03', cta_leftVariantIconColor: '#6C737F', cta_text: 'Compare plans' }
501
+ { cta_leftVariantIcon: 'checksquarebroken', cta_leftVariantIconColor: '#6C737F', cta_text: 'Compare plans' }
502
502
  ],
503
503
  },
504
504
  secondaryCardArr:
505
505
  [
506
506
  {
507
- split: true,
507
+
508
508
  childArray: [
509
509
  {
510
510
  description: '',
511
511
  href: '#',
512
512
  icon: "lightning01",
513
513
  name: 'Instant API',
514
- strokeClass: 'stroke-blue-500'
514
+ strokeClass: 'stroke-neutral-500'
515
515
  },
516
516
  {
517
517
  description: '',
518
518
  href: '#',
519
519
  icon: 'data',
520
520
  name: 'Federation',
521
- strokeClass: 'stroke-blue-500'
521
+ strokeClass: 'stroke-neutral-500'
522
522
  },
523
523
  {
524
524
  description: '',
525
525
  href: '#',
526
526
  icon: 'eye',
527
527
  name: 'Authorization',
528
- strokeClass: 'stroke-blue-500'
528
+ strokeClass: 'stroke-neutral-500'
529
529
  },
530
530
  {
531
531
  description: '',
532
532
  href: '#',
533
533
  icon: 'shieldtick',
534
534
  name: 'API Security',
535
- strokeClass: 'stroke-blue-500'
535
+ strokeClass: 'stroke-neutral-500'
536
536
  },
537
537
  {
538
538
  description: '',
539
539
  href: '#',
540
540
  icon: 'speedometer03',
541
541
  name: 'Performance',
542
- strokeClass: 'stroke-blue-500'
542
+ strokeClass: 'stroke-neutral-500'
543
543
  },
544
544
  {
545
545
  description: '',
546
546
  href: '#',
547
- icon: "barchartsquare01",
547
+ icon: "piechart01",
548
548
  name: 'Observability',
549
- strokeClass: 'stroke-blue-500'
549
+ strokeClass: 'stroke-neutral-500'
550
550
  }
551
551
  ],
552
552
  label: 'CAPABILITIES'
@@ -558,14 +558,14 @@ V3Header.defaultProps = {
558
558
  href: '#',
559
559
  icon: 'database01',
560
560
  name: 'All DBs',
561
- strokeClass: 'stroke-blue-500'
561
+ strokeClass: 'stroke-neutral-500'
562
562
  },
563
563
  {
564
564
  description: '',
565
565
  href: '#',
566
566
  icon: 'checksquare',
567
567
  name: 'Planned DBs',
568
- strokeClass: 'stroke-blue-500'
568
+ strokeClass: 'stroke-neutral-500'
569
569
  },
570
570
  ],
571
571
  label: 'Integrations'
@@ -583,42 +583,42 @@ V3Header.defaultProps = {
583
583
  href: '#',
584
584
  icon: "file02",
585
585
  name: 'Documentation',
586
- strokeClass: 'stroke-blue-500'
586
+ strokeClass: 'stroke-neutral-500'
587
587
  },
588
588
  {
589
589
  description: '',
590
590
  href: '#',
591
591
  icon: 'hasura',
592
592
  name: 'Hasura hub',
593
- strokeClass: 'stroke-blue-500'
593
+ strokeClass: 'stroke-neutral-500'
594
594
  },
595
595
  {
596
596
  description: '',
597
597
  href: '#',
598
598
  icon: 'route',
599
599
  name: 'Guides',
600
- strokeClass: 'stroke-blue-500'
600
+ strokeClass: 'stroke-neutral-500'
601
601
  },
602
602
  {
603
603
  description: '',
604
604
  href: '#',
605
605
  icon: 'asterisk02',
606
606
  name: 'GraphQL hub',
607
- strokeClass: 'stroke-blue-500'
607
+ strokeClass: 'stroke-neutral-500'
608
608
  },
609
609
  {
610
610
  description: '',
611
611
  href: '#',
612
612
  icon: "codebrowser",
613
613
  name: 'GraphQL',
614
- strokeClass: 'stroke-blue-500'
614
+ strokeClass: 'stroke-neutral-500'
615
615
  },
616
616
  {
617
617
  description: '',
618
618
  href: '#',
619
619
  icon: 'gitpullrequest',
620
620
  name: 'Changelog',
621
- strokeClass: 'stroke-blue-500'
621
+ strokeClass: 'stroke-neutral-500'
622
622
  }
623
623
  ],
624
624
  label: 'BUILD'
@@ -631,35 +631,35 @@ V3Header.defaultProps = {
631
631
  href: '#',
632
632
  icon: 'bookopen01',
633
633
  name: 'Blog',
634
- strokeClass: 'stroke-blue-500'
634
+ strokeClass: 'stroke-neutral-500'
635
635
  },
636
636
  {
637
637
  description: '',
638
638
  href: '#',
639
639
  icon: 'videorecorder',
640
640
  name: 'Tech talks',
641
- strokeClass: 'stroke-blue-500'
641
+ strokeClass: 'stroke-neutral-500'
642
642
  },
643
643
  {
644
644
  description: '',
645
645
  href: '#',
646
646
  icon: 'graduationhat02',
647
647
  name: 'Tutorials',
648
- strokeClass: 'stroke-blue-500'
648
+ strokeClass: 'stroke-neutral-500'
649
649
  },
650
650
  {
651
651
  description: '',
652
652
  href: '#',
653
653
  icon: 'calendarplus02',
654
654
  name: 'Events',
655
- strokeClass: 'stroke-blue-500'
655
+ strokeClass: 'stroke-neutral-500'
656
656
  },
657
657
  {
658
658
  description: '',
659
659
  href: '#',
660
660
  icon: 'box',
661
661
  name: 'Resources',
662
- strokeClass: 'stroke-blue-500'
662
+ strokeClass: 'stroke-neutral-500'
663
663
  },
664
664
  ],
665
665
  label: 'Learn',
@@ -673,35 +673,35 @@ V3Header.defaultProps = {
673
673
  href: '#',
674
674
  icon: 'users01',
675
675
  name: 'Community',
676
- strokeClass: 'stroke-blue-500'
676
+ strokeClass: 'stroke-neutral-500'
677
677
  },
678
678
  {
679
679
  description: '',
680
680
  href: '#',
681
- icon: 'cube01',
681
+ icon: 'discord',
682
682
  name: 'Discord',
683
- strokeClass: 'stroke-blue-500'
683
+ strokeClass: ''
684
684
  },
685
685
  {
686
686
  description: '',
687
687
  href: '#',
688
- icon: 'cube01',
688
+ icon: 'octoface',
689
689
  name: 'Forum',
690
- strokeClass: 'stroke-blue-500'
690
+ strokeClass: ''
691
691
  },
692
692
  {
693
693
  description: '',
694
694
  href: '#',
695
- icon: 'cube01',
695
+ icon: 'meetup',
696
696
  name: 'Meetups',
697
- strokeClass: 'stroke-blue-500'
697
+ strokeClass: ''
698
698
  },
699
699
  {
700
700
  description: '',
701
701
  href: '#',
702
702
  icon: 'hand',
703
703
  name: 'Support',
704
- strokeClass: 'stroke-blue-500'
704
+ strokeClass: 'stroke-neutral-500'
705
705
  },
706
706
  ],
707
707
  label: 'Connect',
@@ -748,35 +748,35 @@ V3Header.defaultProps = {
748
748
  href: '#',
749
749
  icon: "pentool02",
750
750
  name: 'Our story',
751
- strokeClass: 'stroke-blue-500'
751
+ strokeClass: 'stroke-neutral-500'
752
752
  },
753
753
  {
754
754
  description: '',
755
755
  href: '#',
756
- icon: 'data',
756
+ icon: 'intersectcircle',
757
757
  name: 'Partners',
758
- strokeClass: 'stroke-blue-500'
758
+ strokeClass: 'stroke-neutral-500'
759
759
  },
760
760
  {
761
761
  description: '',
762
762
  href: '#',
763
763
  icon: 'hearthand',
764
764
  name: 'Work at Hasura',
765
- strokeClass: 'stroke-blue-500'
765
+ strokeClass: 'stroke-neutral-500'
766
766
  },
767
767
  {
768
768
  description: '',
769
769
  href: '#',
770
770
  icon: 'headingsquare',
771
771
  name: 'News room',
772
- strokeClass: 'stroke-blue-500'
772
+ strokeClass: 'stroke-neutral-500'
773
773
  },
774
774
  {
775
775
  description: '',
776
776
  href: '#',
777
777
  icon: 'star06',
778
778
  name: 'Brand',
779
- strokeClass: 'stroke-blue-500'
779
+ strokeClass: 'stroke-neutral-500'
780
780
  },
781
781
 
782
782
  ],
@@ -1189,8 +1189,14 @@ import {ReactComponent as TriggerIcon } from "../../../assets/icons/trigger.svg"
1189
1189
  import {ReactComponent as WatchTriggerIcon } from "../../../assets/icons/watchTrigger.svg"
1190
1190
  import {ReactComponent as HasuraLogoWhiteIcon } from "../../../assets/V3/HasuraWhite.svg"
1191
1191
  import {ReactComponent as GraphQLIcon } from "../../../assets/icons/graphql-logo.svg"
1192
+ import {ReactComponent as DiscordIcon } from "../../../assets/icons/Discord.svg"
1193
+ import {ReactComponent as OctoFaceIcon } from "../../../assets/icons/Octoface.svg"
1194
+ import {ReactComponent as MeetupIcon } from "../../../assets/icons/meetup.svg"
1192
1195
 
1193
1196
  const iconReferenceMap = {
1197
+ discord: DiscordIcon,
1198
+ meetup: MeetupIcon,
1199
+ octoface: OctoFaceIcon,
1194
1200
  graphQL: GraphQLIcon,
1195
1201
  caching: CachingIcon,
1196
1202
  doubleArrow: DoubleArrowIcon,
@@ -2385,11 +2391,20 @@ export default function Icon ({ variant, height, strokeColor, strokeClass, class
2385
2391
  if (iconReferenceMap[variant]){
2386
2392
  CurrentActiveIcon = iconReferenceMap[variant] ;
2387
2393
  }
2388
- const IconStrokeCLass = HDSColor(strokeClass);
2394
+ let IconStrokeCLass = HDSColor(strokeClass);
2395
+ if (variant === 'discord') {
2396
+ IconStrokeCLass = 'fill-neutral-500 group-hover/icon:fill-discord'
2397
+ }
2398
+ if (variant === 'octoface') {
2399
+ IconStrokeCLass = 'fill-neutral-500 group-hover/icon:fill-base-10000'
2400
+ }
2401
+ if (variant === 'meetup') {
2402
+ IconStrokeCLass = 'fill-neutral-500 group-hover/icon:fill-pink-meetup'
2403
+ }
2389
2404
  return (
2390
2405
  <div style={{ stroke: `${strokeColor}` }}>
2391
2406
  <CurrentActiveIcon
2392
- className={[`${height}`, `${IconStrokeCLass}`, `${className}` ].join(' ')}
2407
+ className={[`${height}`, `${IconStrokeCLass}` , `${className}` ].join(' ')}
2393
2408
  />
2394
2409
  </div>
2395
2410
  );
@@ -2,13 +2,19 @@ import React from 'react';
2
2
 
3
3
  function StoryLayout(props) {
4
4
  return (
5
- <div className='pt-10 flex flex-wrap items-center justify-center'>
5
+ <div className='p-4'>
6
+
7
+ <div className='pt-10 gap-10 flex flex-wrap items-center justify-center'>
6
8
  {React.Children.map(props.children, (child) => (
7
- <div className='p-10'>
9
+ <div className='p-10 border border-neutral-200 rounded-2xl'>
10
+ <div className='shadow-xl bg-neutral-0 rounded-3xl'>
11
+
8
12
  {child}
13
+ </div>
9
14
  </div>
10
15
  ))}
11
16
  </div>
17
+ </div>
12
18
  );
13
19
  }
14
20
 
@@ -1387,8 +1387,8 @@ select{
1387
1387
  margin-right: 2rem;
1388
1388
  }
1389
1389
 
1390
- .mr-\[34px\]{
1391
- margin-right: 34px;
1390
+ .mr-\[30px\]{
1391
+ margin-right: 30px;
1392
1392
  }
1393
1393
 
1394
1394
  .mr-\[50px\]{
@@ -1634,6 +1634,10 @@ select{
1634
1634
  height: 90px;
1635
1635
  }
1636
1636
 
1637
+ .h-\[calc\(100\%-16px\)\]{
1638
+ height: calc(100% - 16px);
1639
+ }
1640
+
1637
1641
  .h-\[calc\(100\%-1px\)\]{
1638
1642
  height: calc(100% - 1px);
1639
1643
  }
@@ -1850,6 +1854,10 @@ select{
1850
1854
  width: 90%;
1851
1855
  }
1852
1856
 
1857
+ .w-\[calc\(100\%-16px\)\]{
1858
+ width: calc(100% - 16px);
1859
+ }
1860
+
1853
1861
  .w-auto{
1854
1862
  width: auto;
1855
1863
  }
@@ -1896,6 +1904,10 @@ select{
1896
1904
  min-width: 24px;
1897
1905
  }
1898
1906
 
1907
+ .min-w-\[250px\]{
1908
+ min-width: 250px;
1909
+ }
1910
+
1899
1911
  .min-w-\[312px\]{
1900
1912
  min-width: 312px;
1901
1913
  }
@@ -1974,6 +1986,10 @@ select{
1974
1986
  max-width: 242px;
1975
1987
  }
1976
1988
 
1989
+ .max-w-\[250px\]{
1990
+ max-width: 250px;
1991
+ }
1992
+
1977
1993
  .max-w-\[29\.18rem\]{
1978
1994
  max-width: 29.18rem;
1979
1995
  }
@@ -2224,14 +2240,6 @@ select{
2224
2240
  list-style-type: none;
2225
2241
  }
2226
2242
 
2227
- .grid-flow-col{
2228
- grid-auto-flow: column;
2229
- }
2230
-
2231
- .grid-flow-col-dense{
2232
- grid-auto-flow: column dense;
2233
- }
2234
-
2235
2243
  .grid-cols-1{
2236
2244
  grid-template-columns: repeat(1, minmax(0, 1fr));
2237
2245
  }
@@ -5693,6 +5701,10 @@ select{
5693
5701
  --tw-gradient-to-position: ;
5694
5702
  }
5695
5703
 
5704
+ .fill-neutral-500{
5705
+ fill: #6C737F;
5706
+ }
5707
+
5696
5708
  .stroke-amber-100{
5697
5709
  stroke: #FFF3D4;
5698
5710
  }
@@ -9895,6 +9907,10 @@ select{
9895
9907
  color: rgb(108 115 127 / var(--tw-text-opacity));
9896
9908
  }
9897
9909
 
9910
+ .group\/btn:hover .group-hover\/btn\:visible{
9911
+ visibility: visible;
9912
+ }
9913
+
9898
9914
  .group\/icon:hover .group-hover\/icon\:visible{
9899
9915
  visibility: visible;
9900
9916
  }
@@ -9903,6 +9919,12 @@ select{
9903
9919
  visibility: visible;
9904
9920
  }
9905
9921
 
9922
+ .group\/btn:hover .group-hover\/btn\:translate-x-1{
9923
+ --tw-translate-x: 0.25rem;
9924
+ -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
9925
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
9926
+ }
9927
+
9906
9928
  .group\/icon:hover .group-hover\/icon\:translate-x-1{
9907
9929
  --tw-translate-x: 0.25rem;
9908
9930
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -9947,6 +9969,11 @@ select{
9947
9969
  background-color: rgb(145 245 215 / var(--tw-bg-opacity));
9948
9970
  }
9949
9971
 
9972
+ .group:hover .group-hover\:bg-neutral-100{
9973
+ --tw-bg-opacity: 1;
9974
+ background-color: rgb(243 244 246 / var(--tw-bg-opacity));
9975
+ }
9976
+
9950
9977
  .group:hover .group-hover\:bg-neutral-300{
9951
9978
  --tw-bg-opacity: 1;
9952
9979
  background-color: rgb(210 214 219 / var(--tw-bg-opacity));
@@ -9974,6 +10001,38 @@ select{
9974
10001
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
9975
10002
  }
9976
10003
 
10004
+ .group:hover .group-hover\:fill-blue-800{
10005
+ fill: #00288E;
10006
+ }
10007
+
10008
+ .group:hover .group-hover\:fill-base-10000{
10009
+ fill: #000000;
10010
+ }
10011
+
10012
+ .group:hover .group-hover\:fill-discord{
10013
+ fill: #5865F2;
10014
+ }
10015
+
10016
+ .group:hover .group-hover\:fill-pink-meetup{
10017
+ fill: #F64060;
10018
+ }
10019
+
10020
+ .group\/icon:hover .group-hover\/icon\:fill-base-10000{
10021
+ fill: #000000;
10022
+ }
10023
+
10024
+ .group\/icon:hover .group-hover\/icon\:fill-discord{
10025
+ fill: #5865F2;
10026
+ }
10027
+
10028
+ .group\/icon:hover .group-hover\/icon\:fill-pink-meetup{
10029
+ fill: #F64060;
10030
+ }
10031
+
10032
+ .group\/btn:hover .group-hover\/btn\:stroke-blue-500{
10033
+ stroke: #3970FD;
10034
+ }
10035
+
9977
10036
  .group\/icon:hover .group-hover\/icon\:stroke-blue-500{
9978
10037
  stroke: #3970FD;
9979
10038
  }
@@ -9990,14 +10049,15 @@ select{
9990
10049
  stroke: #FFFFFF;
9991
10050
  }
9992
10051
 
9993
- .group:hover .group-hover\:stroke-neutral-1000{
9994
- stroke: #000615;
9995
- }
9996
-
9997
10052
  .group:hover .group-hover\:stroke-neutral-900{
9998
10053
  stroke: #111927;
9999
10054
  }
10000
10055
 
10056
+ .group\/btn:hover .group-hover\/btn\:text-blue-600{
10057
+ --tw-text-opacity: 1;
10058
+ color: rgb(30 86 227 / var(--tw-text-opacity));
10059
+ }
10060
+
10001
10061
  .group\/icon:hover .group-hover\/icon\:text-blue-600{
10002
10062
  --tw-text-opacity: 1;
10003
10063
  color: rgb(30 86 227 / var(--tw-text-opacity));
@@ -10183,8 +10243,8 @@ select{
10183
10243
  margin-right: 1rem;
10184
10244
  }
10185
10245
 
10186
- .tb\:mr-\[16px\]{
10187
- margin-right: 16px;
10246
+ .tb\:mr-\[12px\]{
10247
+ margin-right: 12px;
10188
10248
  }
10189
10249
 
10190
10250
  .tb\:mt-0{
@@ -10331,6 +10391,10 @@ select{
10331
10391
  max-width: 763px;
10332
10392
  }
10333
10393
 
10394
+ .tb\:max-w-\[250px\]{
10395
+ max-width: 250px;
10396
+ }
10397
+
10334
10398
  .tb\:snap-always{
10335
10399
  scroll-snap-stop: always;
10336
10400
  }
@@ -11109,10 +11173,6 @@ select{
11109
11173
  width: 100%;
11110
11174
  }
11111
11175
 
11112
- .tb-l\:min-w-\[15rem\]{
11113
- min-width: 15rem;
11114
- }
11115
-
11116
11176
  .tb-l\:min-w-\[400px\]{
11117
11177
  min-width: 400px;
11118
11178
  }
@@ -11121,10 +11181,6 @@ select{
11121
11181
  max-width: 1240px;
11122
11182
  }
11123
11183
 
11124
- .tb-l\:max-w-\[210px\]{
11125
- max-width: 210px;
11126
- }
11127
-
11128
11184
  .tb-l\:max-w-\[658px\]{
11129
11185
  max-width: 658px;
11130
11186
  }
@@ -11273,12 +11329,6 @@ select{
11273
11329
  }
11274
11330
  }
11275
11331
 
11276
- @media (min-width: 970px){
11277
- .tb-xl\:max-w-\[250px\]{
11278
- max-width: 250px;
11279
- }
11280
- }
11281
-
11282
11332
  @media (min-width: 1024px){
11283
11333
  .lg\:flex{
11284
11334
  display: flex;
@@ -11463,14 +11513,6 @@ select{
11463
11513
  width: 100%;
11464
11514
  }
11465
11515
 
11466
- .db\:min-w-\[169px\]{
11467
- min-width: 169px;
11468
- }
11469
-
11470
- .db\:min-w-\[28\.063rem\]{
11471
- min-width: 28.063rem;
11472
- }
11473
-
11474
11516
  .db\:min-w-\[550px\]{
11475
11517
  min-width: 550px;
11476
11518
  }
@@ -26,9 +26,12 @@ module.exports = {
26
26
  'storybook-default':{
27
27
  'heading' : '#111B29',
28
28
  },
29
+ 'discord':'#5865F2',
30
+
29
31
  'base': {
30
32
  '0': '#FFFFFF',
31
33
  '1000': '#000615',
34
+ '10000':'#000000'
32
35
  },
33
36
  'neutral': {
34
37
  0: '#FFFFFF',
@@ -105,6 +108,7 @@ module.exports = {
105
108
  700: '#A50A48',
106
109
  800: '#71002C',
107
110
  900: '#49001D',
111
+ 'meetup': '#F64060'
108
112
  },
109
113
  'amber': {
110
114
  100: '#FFF3D4',
@@ -146,6 +150,7 @@ module.exports = {
146
150
  600: '#DB252B',
147
151
  700: '#B81B20',
148
152
  800: '#981A1E',
153
+
149
154
  },
150
155
  },
151
156
  letterSpacing: {
@@ -847,6 +852,9 @@ module.exports = {
847
852
  },
848
853
  }
849
854
  },
855
+ variants: {
856
+ fill: ['hover', 'focus'], // this line does the trick
857
+ },
850
858
  plugins: [
851
859
  // ...
852
860
  require('@tailwindcss/forms'),