File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
src/components/app/details/appDetails Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -718,9 +718,7 @@ const Details: React.FC<DetailsType> = ({
718
718
const isDeploymentAppDeleting = appDetails ?. deploymentAppDeleteRequest || false
719
719
return (
720
720
< >
721
- < div
722
- className = { `w-100 pt-16 pr-20 pb-16 pl-20 dc__gap-16 ${ isDeploymentAppDeleting ? 'app-info-bg' : 'app-info-bg-gradient' } ` }
723
- >
721
+ < div className = { `w-100 dc__gap-16 ${ isDeploymentAppDeleting ? 'app-info-bg' : 'app-info-bg-gradient' } ` } >
724
722
< SourceInfo
725
723
appDetails = { appDetails }
726
724
setDetailed = { setShowAppStatusModal }
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ export const SourceInfo = ({
171
171
172
172
const renderAppDetailsCDButton = ( ) => {
173
173
const { buttonStyle, iconName } = getDeployButtonConfig ( deploymentUserActionState )
174
-
174
+
175
175
return (
176
176
< Button
177
177
dataTestId = "deploy-button"
@@ -208,7 +208,7 @@ export const SourceInfo = ({
208
208
: ''
209
209
210
210
return (
211
- < div className = "flex left w-100 h-40 " >
211
+ < div className = "flex left w-100 pt-16 px-20 " >
212
212
< AppEnvSelector { ...( isAppView ? { isAppView, environments } : { isAppView : false , applications } ) } />
213
213
{ appDetails ?. deploymentAppType && (
214
214
< div className = { `flex ${ ! appDetails . isVirtualEnvironment ? 'ml-16' : '' } ` } >
@@ -415,7 +415,7 @@ export const SourceInfo = ({
415
415
? shimmerLoaderBlocks ( )
416
416
: ! isdeploymentAppDeleting &&
417
417
environment && (
418
- < div className = "flex left w-100 flex-wrap dc__row-gap-12" >
418
+ < div className = "app-details-info-card-container flex left w-100 dc__row-gap-12 pb-16 dc__overflow-auto " >
419
419
{ status && (
420
420
< AppStatusCard
421
421
// TODO: Fix and remove
Original file line number Diff line number Diff line change @@ -1385,6 +1385,20 @@ table.resource-tree {
1385
1385
}
1386
1386
}
1387
1387
1388
+ .app-details-info-card-container {
1389
+ > * {
1390
+ flex-shrink : 0 ;
1391
+
1392
+ & :first-child {
1393
+ margin-left : 20px ;
1394
+ }
1395
+
1396
+ & :last-child {
1397
+ margin-right : 20px ;
1398
+ }
1399
+ }
1400
+ }
1401
+
1388
1402
.deployed-commit-card {
1389
1403
& :hover {
1390
1404
.app-details-info-card :not (:first-child ) {
You can’t perform that action at this time.
0 commit comments