hds-web 1.37.3 → 1.37.4
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/dist/index.css +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/modules/Cards/aboutSection.js +5 -2
- package/src/styles/tailwind.css +16 -0
package/package.json
CHANGED
@@ -3,6 +3,7 @@ import { Badges } from "../../components/BadgesCaption";
|
|
3
3
|
import { Typography } from "../../foundation/Typography";
|
4
4
|
import { HDSButton } from "../../components/Buttons";
|
5
5
|
import { Icon } from "../../components/common-components";
|
6
|
+
|
6
7
|
export default function AboutSection(props) {
|
7
8
|
return (
|
8
9
|
<>
|
@@ -25,11 +26,11 @@ export default function AboutSection(props) {
|
|
25
26
|
<img
|
26
27
|
alt={props.title ?? "connectorImage"}
|
27
28
|
src={props.imgUrl}
|
28
|
-
className=" max-h-[
|
29
|
+
// className=" max-h-[42px] pl-1"
|
30
|
+
className={props?.logoClass || "max-h-[48px] pl-1"}
|
29
31
|
/>
|
30
32
|
</div>
|
31
33
|
)}
|
32
|
-
|
33
34
|
{props.tags && (
|
34
35
|
<div className="gap-2 pt-8 flex flex-wrap">
|
35
36
|
{props.tags.map((tag, index) => (
|
@@ -156,6 +157,8 @@ export default function AboutSection(props) {
|
|
156
157
|
<a
|
157
158
|
href={props.githubRepoLink}
|
158
159
|
className="flex gap-2 items-center"
|
160
|
+
target="_blank"
|
161
|
+
rel="noopener noreferrer"
|
159
162
|
>
|
160
163
|
<Icon height={"h-6 w-6 stroke-[1.5px]"} variant="octoface" />
|
161
164
|
<Typography textStyle="body1-medium" className="text-blue-600">
|
package/src/styles/tailwind.css
CHANGED
@@ -1782,6 +1782,10 @@ select{
|
|
1782
1782
|
max-height: 44px;
|
1783
1783
|
}
|
1784
1784
|
|
1785
|
+
.max-h-\[48px\]{
|
1786
|
+
max-height: 48px;
|
1787
|
+
}
|
1788
|
+
|
1785
1789
|
.max-h-\[530px\]{
|
1786
1790
|
max-height: 530px;
|
1787
1791
|
}
|
@@ -1798,6 +1802,14 @@ select{
|
|
1798
1802
|
max-height: 100vh;
|
1799
1803
|
}
|
1800
1804
|
|
1805
|
+
.max-h-\[42px\]{
|
1806
|
+
max-height: 42px;
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
.max-h-\[36px\]{
|
1810
|
+
max-height: 36px;
|
1811
|
+
}
|
1812
|
+
|
1801
1813
|
.min-h-\[12px\]{
|
1802
1814
|
min-height: 12px;
|
1803
1815
|
}
|
@@ -6656,6 +6668,10 @@ select{
|
|
6656
6668
|
padding-left: 0px;
|
6657
6669
|
}
|
6658
6670
|
|
6671
|
+
.pl-1{
|
6672
|
+
padding-left: 0.25rem;
|
6673
|
+
}
|
6674
|
+
|
6659
6675
|
.pl-10{
|
6660
6676
|
padding-left: 2.5rem;
|
6661
6677
|
}
|