hds-web 1.12.1 → 1.12.2
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/package.json
CHANGED
@@ -106,10 +106,14 @@ export default function V3Footer(props) {
|
|
106
106
|
}
|
107
107
|
</div>
|
108
108
|
{isItems && !isError && (
|
109
|
-
|
109
|
+
<>
|
110
|
+
<a href='https://status.hasura.io/' className=''>
|
111
|
+
<div className=' bg-neutral-0 rounded-full shadow hover:shadow-lg transition-all duration-300 px-4 py-2 inline-flex justify-center items-center'>
|
110
112
|
<div className='w-4 h-4 bg-green-400 rounded-full mr-2'></div>
|
111
113
|
<Typography textStyle='body3' className='text-neutral-1000'>{isItems?.status.description}</Typography>
|
112
114
|
</div>
|
115
|
+
</a>
|
116
|
+
</>
|
113
117
|
)}
|
114
118
|
<div>
|
115
119
|
<Typography textStyle='body3c' className='text-neutral-600 pt-4 tb-m:pt-0'>© {new Date().getFullYear()} Hasura Inc. All rights reserved</Typography>
|
package/src/styles/tailwind.css
CHANGED
@@ -1591,6 +1591,10 @@ select{
|
|
1591
1591
|
max-height: 100%;
|
1592
1592
|
}
|
1593
1593
|
|
1594
|
+
.min-h-\[12px\]{
|
1595
|
+
min-height: 12px;
|
1596
|
+
}
|
1597
|
+
|
1594
1598
|
.min-h-\[20px\]{
|
1595
1599
|
min-height: 20px;
|
1596
1600
|
}
|
@@ -1777,6 +1781,10 @@ select{
|
|
1777
1781
|
min-width: 112px;
|
1778
1782
|
}
|
1779
1783
|
|
1784
|
+
.min-w-\[12px\]{
|
1785
|
+
min-width: 12px;
|
1786
|
+
}
|
1787
|
+
|
1780
1788
|
.min-w-\[130px\]{
|
1781
1789
|
min-width: 130px;
|
1782
1790
|
}
|
@@ -7481,6 +7489,51 @@ select{
|
|
7481
7489
|
}
|
7482
7490
|
}
|
7483
7491
|
|
7492
|
+
@-webkit-keyframes up-right {
|
7493
|
+
0% {
|
7494
|
+
-webkit-transform: scale(1);
|
7495
|
+
transform: scale(1);
|
7496
|
+
opacity: 0.25;
|
7497
|
+
}
|
7498
|
+
|
7499
|
+
50% {
|
7500
|
+
-webkit-transform: scale (1, 5);
|
7501
|
+
transform: scale (1, 5);
|
7502
|
+
opacity: 1;
|
7503
|
+
}
|
7504
|
+
|
7505
|
+
100% {
|
7506
|
+
-webkit-transform: scale(1);
|
7507
|
+
transform: scale(1);
|
7508
|
+
opacity: 0.25;
|
7509
|
+
}
|
7510
|
+
}
|
7511
|
+
|
7512
|
+
@keyframes up-right {
|
7513
|
+
0% {
|
7514
|
+
-webkit-transform: scale(1);
|
7515
|
+
transform: scale(1);
|
7516
|
+
opacity: 0.25;
|
7517
|
+
}
|
7518
|
+
|
7519
|
+
50% {
|
7520
|
+
-webkit-transform: scale (1, 5);
|
7521
|
+
transform: scale (1, 5);
|
7522
|
+
opacity: 1;
|
7523
|
+
}
|
7524
|
+
|
7525
|
+
100% {
|
7526
|
+
-webkit-transform: scale(1);
|
7527
|
+
transform: scale(1);
|
7528
|
+
opacity: 0.25;
|
7529
|
+
}
|
7530
|
+
}
|
7531
|
+
|
7532
|
+
.blinking {
|
7533
|
+
-webkit-animation: up-right 1s infinite;
|
7534
|
+
animation: up-right 1s infinite;
|
7535
|
+
}
|
7536
|
+
|
7484
7537
|
.card-animation-wrapper {
|
7485
7538
|
position: relative;
|
7486
7539
|
}
|
@@ -11456,4 +11509,4 @@ select{
|
|
11456
11509
|
.\[\&\>ul\]\:ps-4>ul{
|
11457
11510
|
-webkit-padding-start: 1rem;
|
11458
11511
|
padding-inline-start: 1rem;
|
11459
|
-
}
|
11512
|
+
}
|