Skip to content

Commit fcc318a

Browse files
chore: address pr comments
1 parent e801b12 commit fcc318a

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

src/components/ApplicationGroup/CreateAppGroup.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,14 @@ export default function CreateAppGroup({
172172
}
173173

174174
const renderEmptyState = (title?: string): JSX.Element => {
175-
return <GenericEmptyState title={title} image={Info} imageClassName="h-20" classname="h-40vh" />
175+
return (
176+
<GenericEmptyState
177+
title={title}
178+
image={Info}
179+
imageClassName="h-20"
180+
styles={{ height: 'calc(100vh - 420px)' }}
181+
/>
182+
)
176183
}
177184

178185
const renderSelectedApps = (): JSX.Element => {

src/css/base.scss

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,7 @@ button.anchor {
18391839

18401840
.dc__link {
18411841
color: var(--B500);
1842-
&.dc__link_over {
1842+
&.dc__link_over{
18431843
color: var(--N600);
18441844
}
18451845
&:hover {
@@ -2289,7 +2289,7 @@ textarea,
22892289
background-color: var(--N50);
22902290
}
22912291

2292-
.c-n50 {
2292+
.c-n50{
22932293
color: var(--N50);
22942294
}
22952295

@@ -2672,7 +2672,7 @@ textarea,
26722672
width: 300px !important;
26732673
}
26742674

2675-
.w-320 {
2675+
.w-320{
26762676
width: 320px;
26772677
}
26782678

@@ -2945,7 +2945,7 @@ textarea,
29452945
height: 112px !important;
29462946
}
29472947

2948-
.h-128 {
2948+
.h-128{
29492949
height: 128px !important;
29502950
}
29512951

@@ -3031,7 +3031,7 @@ textarea,
30313031
}
30323032

30333033
.mxh-390-imp {
3034-
max-height: 390px !important;
3034+
max-height: 390px!important;
30353035
}
30363036

30373037
// Height in percentage
@@ -3047,10 +3047,6 @@ textarea,
30473047
height: 100vh;
30483048
}
30493049

3050-
.h-40vh {
3051-
height: 40vh;
3052-
}
3053-
30543050
.h-76-imp {
30553051
height: 76px !important;
30563052
}
@@ -3289,7 +3285,7 @@ textarea,
32893285
}
32903286
}
32913287

3292-
.dc__column-gap-8 {
3288+
.dc__column-gap-8{
32933289
column-gap: 8px;
32943290
}
32953291

0 commit comments

Comments
 (0)