hds-web 1.17.7 → 1.17.9
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/.github/workflows/chromatic.yml +1 -1
- package/dist/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +5 -5
- package/dist/index.js +5 -5
- package/package.json +2 -2
- package/src/HDS/assets/icons/Discord.svg +3 -0
- package/src/HDS/assets/icons/Octoface.svg +3 -0
- package/src/HDS/assets/icons/asterisk-02.svg +1 -1
- package/src/HDS/assets/icons/book-open-01.svg +1 -1
- package/src/HDS/assets/icons/box.svg +1 -1
- package/src/HDS/assets/icons/check-square-broken.svg +1 -1
- package/src/HDS/assets/icons/check-square.svg +1 -1
- package/src/HDS/assets/icons/code-browser.svg +1 -1
- package/src/HDS/assets/icons/cube-01.svg +1 -1
- package/src/HDS/assets/icons/data.svg +4 -4
- package/src/HDS/assets/icons/database-01.svg +1 -1
- package/src/HDS/assets/icons/endpoints.svg +3 -2
- package/src/HDS/assets/icons/eye.svg +2 -2
- package/src/HDS/assets/icons/file-02.svg +1 -1
- package/src/HDS/assets/icons/git-pull-request.svg +1 -1
- package/src/HDS/assets/icons/graduation-hat-02.svg +1 -1
- package/src/HDS/assets/icons/hasura.svg +2 -2
- package/src/HDS/assets/icons/heading-square.svg +1 -1
- package/src/HDS/assets/icons/heart-hand.svg +1 -1
- package/src/HDS/assets/icons/intersect-circle.svg +2 -2
- package/src/HDS/assets/icons/layers-three-01.svg +1 -1
- package/src/HDS/assets/icons/lightning-01.svg +1 -1
- package/src/HDS/assets/icons/meetup.svg +4 -0
- package/src/HDS/assets/icons/pen-tool-02.svg +1 -1
- package/src/HDS/assets/icons/pie-chart-01.svg +1 -1
- package/src/HDS/assets/icons/route.svg +1 -1
- package/src/HDS/assets/icons/shield-tick.svg +1 -1
- package/src/HDS/assets/icons/speedometer-03.svg +1 -1
- package/src/HDS/assets/icons/star-06.svg +1 -1
- package/src/HDS/assets/icons/users-01.svg +1 -1
- package/src/HDS/assets/icons/video-recorder.svg +2 -2
- package/src/HDS/components/Cards/BrandCard/brandCard.js +1 -4
- package/src/HDS/components/Cards/Dropdown/v3Dropdown.js +1 -1
- package/src/HDS/components/Cards/Menu/flyoutA.js +4 -4
- package/src/HDS/components/Cards/Menu/flyoutB.js +58 -37
- package/src/HDS/components/Headers/v3Header.js +41 -41
- package/src/HDS/components/common-components/Icon/IconMap.js +17 -2
- package/src/HDS/helpers/Grid/index.js +2 -1
- package/src/HDS/helpers/Grid/storyLayout.js +21 -0
- package/src/styles/tailwind.css +80 -30
- 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-
|
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-[
|
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.
|
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: '
|
496
|
+
iconVariant: 'layersthree01',
|
497
497
|
mainDescription: 'Choose from our open source community edition, fully managed cloud edition or custom enterprise',
|
498
|
-
primaryBtnLabel: 'Hasura
|
498
|
+
primaryBtnLabel: 'Hasura platform',
|
499
499
|
strokeClass: 'stroke-neutral-800',
|
500
500
|
secondaryBtn: [
|
501
|
-
{ cta_leftVariantIcon: '
|
501
|
+
{ cta_leftVariantIcon: 'checksquarebroken', cta_leftVariantIconColor: '#6C737F', cta_text: 'Compare plans' }
|
502
502
|
],
|
503
503
|
},
|
504
504
|
secondaryCardArr:
|
505
505
|
[
|
506
506
|
{
|
507
|
-
|
507
|
+
|
508
508
|
childArray: [
|
509
509
|
{
|
510
510
|
description: '',
|
511
511
|
href: '#',
|
512
512
|
icon: "lightning01",
|
513
513
|
name: 'Instant API',
|
514
|
-
strokeClass: 'stroke-
|
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-
|
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-
|
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-
|
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-
|
542
|
+
strokeClass: 'stroke-neutral-500'
|
543
543
|
},
|
544
544
|
{
|
545
545
|
description: '',
|
546
546
|
href: '#',
|
547
|
-
icon: "
|
547
|
+
icon: "piechart01",
|
548
548
|
name: 'Observability',
|
549
|
-
strokeClass: 'stroke-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
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-
|
676
|
+
strokeClass: 'stroke-neutral-500'
|
677
677
|
},
|
678
678
|
{
|
679
679
|
description: '',
|
680
680
|
href: '#',
|
681
|
-
icon: '
|
681
|
+
icon: 'discord',
|
682
682
|
name: 'Discord',
|
683
|
-
strokeClass: '
|
683
|
+
strokeClass: ''
|
684
684
|
},
|
685
685
|
{
|
686
686
|
description: '',
|
687
687
|
href: '#',
|
688
|
-
icon: '
|
688
|
+
icon: 'octoface',
|
689
689
|
name: 'Forum',
|
690
|
-
strokeClass: '
|
690
|
+
strokeClass: ''
|
691
691
|
},
|
692
692
|
{
|
693
693
|
description: '',
|
694
694
|
href: '#',
|
695
|
-
icon: '
|
695
|
+
icon: 'meetup',
|
696
696
|
name: 'Meetups',
|
697
|
-
strokeClass: '
|
697
|
+
strokeClass: ''
|
698
698
|
},
|
699
699
|
{
|
700
700
|
description: '',
|
701
701
|
href: '#',
|
702
702
|
icon: 'hand',
|
703
703
|
name: 'Support',
|
704
|
-
strokeClass: 'stroke-
|
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-
|
751
|
+
strokeClass: 'stroke-neutral-500'
|
752
752
|
},
|
753
753
|
{
|
754
754
|
description: '',
|
755
755
|
href: '#',
|
756
|
-
icon: '
|
756
|
+
icon: 'intersectcircle',
|
757
757
|
name: 'Partners',
|
758
|
-
strokeClass: 'stroke-
|
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-
|
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-
|
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-
|
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
|
-
|
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}
|
2407
|
+
className={[`${height}`, `${IconStrokeCLass}` , `${className}` ].join(' ')}
|
2393
2408
|
/>
|
2394
2409
|
</div>
|
2395
2410
|
);
|
@@ -1 +1,2 @@
|
|
1
|
-
export {default as GridComponent} from './grid';
|
1
|
+
export {default as GridComponent} from './grid';
|
2
|
+
export {default as StoryLayout} from './storyLayout'
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
function StoryLayout(props) {
|
4
|
+
return (
|
5
|
+
<div className='p-4'>
|
6
|
+
|
7
|
+
<div className='pt-10 gap-10 flex flex-wrap items-center justify-center'>
|
8
|
+
{React.Children.map(props.children, (child) => (
|
9
|
+
<div className='p-10 border border-neutral-200 rounded-2xl'>
|
10
|
+
<div className='shadow-xl bg-neutral-0 rounded-3xl'>
|
11
|
+
|
12
|
+
{child}
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
))}
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
);
|
19
|
+
}
|
20
|
+
|
21
|
+
export default StoryLayout;
|
package/src/styles/tailwind.css
CHANGED
@@ -1387,8 +1387,8 @@ select{
|
|
1387
1387
|
margin-right: 2rem;
|
1388
1388
|
}
|
1389
1389
|
|
1390
|
-
.mr-\[
|
1391
|
-
margin-right:
|
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
|
}
|
@@ -5685,6 +5701,10 @@ select{
|
|
5685
5701
|
--tw-gradient-to-position: ;
|
5686
5702
|
}
|
5687
5703
|
|
5704
|
+
.fill-neutral-500{
|
5705
|
+
fill: #6C737F;
|
5706
|
+
}
|
5707
|
+
|
5688
5708
|
.stroke-amber-100{
|
5689
5709
|
stroke: #FFF3D4;
|
5690
5710
|
}
|
@@ -9887,6 +9907,10 @@ select{
|
|
9887
9907
|
color: rgb(108 115 127 / var(--tw-text-opacity));
|
9888
9908
|
}
|
9889
9909
|
|
9910
|
+
.group\/btn:hover .group-hover\/btn\:visible{
|
9911
|
+
visibility: visible;
|
9912
|
+
}
|
9913
|
+
|
9890
9914
|
.group\/icon:hover .group-hover\/icon\:visible{
|
9891
9915
|
visibility: visible;
|
9892
9916
|
}
|
@@ -9895,6 +9919,12 @@ select{
|
|
9895
9919
|
visibility: visible;
|
9896
9920
|
}
|
9897
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
|
+
|
9898
9928
|
.group\/icon:hover .group-hover\/icon\:translate-x-1{
|
9899
9929
|
--tw-translate-x: 0.25rem;
|
9900
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));
|
@@ -9939,6 +9969,11 @@ select{
|
|
9939
9969
|
background-color: rgb(145 245 215 / var(--tw-bg-opacity));
|
9940
9970
|
}
|
9941
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
|
+
|
9942
9977
|
.group:hover .group-hover\:bg-neutral-300{
|
9943
9978
|
--tw-bg-opacity: 1;
|
9944
9979
|
background-color: rgb(210 214 219 / var(--tw-bg-opacity));
|
@@ -9966,6 +10001,38 @@ select{
|
|
9966
10001
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
9967
10002
|
}
|
9968
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
|
+
|
9969
10036
|
.group\/icon:hover .group-hover\/icon\:stroke-blue-500{
|
9970
10037
|
stroke: #3970FD;
|
9971
10038
|
}
|
@@ -9982,14 +10049,15 @@ select{
|
|
9982
10049
|
stroke: #FFFFFF;
|
9983
10050
|
}
|
9984
10051
|
|
9985
|
-
.group:hover .group-hover\:stroke-neutral-1000{
|
9986
|
-
stroke: #000615;
|
9987
|
-
}
|
9988
|
-
|
9989
10052
|
.group:hover .group-hover\:stroke-neutral-900{
|
9990
10053
|
stroke: #111927;
|
9991
10054
|
}
|
9992
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
|
+
|
9993
10061
|
.group\/icon:hover .group-hover\/icon\:text-blue-600{
|
9994
10062
|
--tw-text-opacity: 1;
|
9995
10063
|
color: rgb(30 86 227 / var(--tw-text-opacity));
|
@@ -10175,8 +10243,8 @@ select{
|
|
10175
10243
|
margin-right: 1rem;
|
10176
10244
|
}
|
10177
10245
|
|
10178
|
-
.tb\:mr-\[
|
10179
|
-
margin-right:
|
10246
|
+
.tb\:mr-\[12px\]{
|
10247
|
+
margin-right: 12px;
|
10180
10248
|
}
|
10181
10249
|
|
10182
10250
|
.tb\:mt-0{
|
@@ -10323,6 +10391,10 @@ select{
|
|
10323
10391
|
max-width: 763px;
|
10324
10392
|
}
|
10325
10393
|
|
10394
|
+
.tb\:max-w-\[250px\]{
|
10395
|
+
max-width: 250px;
|
10396
|
+
}
|
10397
|
+
|
10326
10398
|
.tb\:snap-always{
|
10327
10399
|
scroll-snap-stop: always;
|
10328
10400
|
}
|
@@ -11101,10 +11173,6 @@ select{
|
|
11101
11173
|
width: 100%;
|
11102
11174
|
}
|
11103
11175
|
|
11104
|
-
.tb-l\:min-w-\[15rem\]{
|
11105
|
-
min-width: 15rem;
|
11106
|
-
}
|
11107
|
-
|
11108
11176
|
.tb-l\:min-w-\[400px\]{
|
11109
11177
|
min-width: 400px;
|
11110
11178
|
}
|
@@ -11113,10 +11181,6 @@ select{
|
|
11113
11181
|
max-width: 1240px;
|
11114
11182
|
}
|
11115
11183
|
|
11116
|
-
.tb-l\:max-w-\[210px\]{
|
11117
|
-
max-width: 210px;
|
11118
|
-
}
|
11119
|
-
|
11120
11184
|
.tb-l\:max-w-\[658px\]{
|
11121
11185
|
max-width: 658px;
|
11122
11186
|
}
|
@@ -11265,12 +11329,6 @@ select{
|
|
11265
11329
|
}
|
11266
11330
|
}
|
11267
11331
|
|
11268
|
-
@media (min-width: 970px){
|
11269
|
-
.tb-xl\:max-w-\[250px\]{
|
11270
|
-
max-width: 250px;
|
11271
|
-
}
|
11272
|
-
}
|
11273
|
-
|
11274
11332
|
@media (min-width: 1024px){
|
11275
11333
|
.lg\:flex{
|
11276
11334
|
display: flex;
|
@@ -11455,14 +11513,6 @@ select{
|
|
11455
11513
|
width: 100%;
|
11456
11514
|
}
|
11457
11515
|
|
11458
|
-
.db\:min-w-\[169px\]{
|
11459
|
-
min-width: 169px;
|
11460
|
-
}
|
11461
|
-
|
11462
|
-
.db\:min-w-\[28\.063rem\]{
|
11463
|
-
min-width: 28.063rem;
|
11464
|
-
}
|
11465
|
-
|
11466
11516
|
.db\:min-w-\[550px\]{
|
11467
11517
|
min-width: 550px;
|
11468
11518
|
}
|
package/tailwind.config.js
CHANGED
@@ -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'),
|