Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
satyakiran-opsmx committed Sep 22, 2022
1 parent 60ff18e commit ac9b8cc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
6 changes: 5 additions & 1 deletion packages/core/src/application/ApplicationComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ export class ApplicationComponent extends React.Component<IApplicationComponentP
)}
<ApplicationContextProvider app={app}>
<ApolloProvider client={this.apolloClient.client}>
<div className={queryParams['fromISD'] ? 'container scrollable-columns from-isd-parent' : 'container scrollable-columns'}>
<div
className={
queryParams['fromISD'] ? 'container scrollable-columns from-isd-parent' : 'container scrollable-columns'
}
>
<UIView className="secondary-panel" name="insight" />
</div>
</ApolloProvider>
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/application/applications.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

.from-isd-parent {
padding: 0px !important;
}
}
18 changes: 8 additions & 10 deletions packages/core/src/pipeline/config/pipelineConfig.less
Original file line number Diff line number Diff line change
Expand Up @@ -233,22 +233,20 @@ parameter,
width: calc(100% - 30px);
}

@media (min-width: 600px) and (max-width: 1495px){
.width-100{
width: 100%;

}
.stage-head-left{
@media (min-width: 600px) and (max-width: 1495px) {
.width-100 {
width: 100%;
}
.stage-head-left {
width: 21%;
float: left;
}
.stage-head-center{
.stage-head-center {
width: 58.33%;
float: left;
}
.stage-head-right{
.stage-head-right {
width: 20.66%;
float: left;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ stage-config-field {
}
}
}
@media (min-width: 768px) and (max-width: 1495px){
.stage-label{
@media (min-width: 768px) and (max-width: 1495px) {
.stage-label {
width: 27%;
float: left;
}
.stage-field{
.stage-field {
float: left;
width: 73%;
}
}
}

0 comments on commit ac9b8cc

Please sign in to comment.