Skip to content

Commit df1478d

Browse files
committed
PR comments fix
1 parent 1aee6aa commit df1478d

File tree

78 files changed

+95
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+95
-95
lines changed

src/app/branding/c1-style-config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ export const brandingConfig: BrandingConfiguration = config as BrandingConfigura
55

66
export const c1Styles = {
77
common: {
8-
configurationCommonStyle: 'tw-mx-60-px tw-shadow-shadow-level-1',
9-
mainPaddingStyle: 'tw-px-60-px',
10-
mainShadowStyle: 'tw-shadow-shadow-level-1'
8+
configurationContents: 'tw-mx-60-px tw-shadow-shadow-level-1',
9+
mainComponentPadding: 'tw-px-60-px',
10+
mainComponentShadow: 'tw-shadow-shadow-level-1'
1111
},
1212
mapping: {
1313
mappingHeaderBoxShadow: 'tw-shadow-shadow-level-1'

src/app/branding/fyle-style-config.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ export const brandingConfig: BrandingConfiguration = config as BrandingConfigura
55

66
export const fyleStyles = {
77
common: {
8-
configurationCommonStyle: 'tw-mx-120-px tw-shadow-app-card',
9-
mainPaddingStyle: 'tw-px-120-px',
10-
mainShadowStyle: 'tw-shadow-app-card'
8+
configurationContents: 'tw-mx-120-px tw-shadow-app-card',
9+
mainComponentPadding: 'tw-px-120-px',
10+
mainComponentShadow: 'tw-shadow-app-card'
1111
},
1212
mapping: {
1313
mappingHeaderBoxShadow: 'tw-shadow-stats-box'

src/app/integrations/business-central/business-central-main/business-central-export-log/business-central-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</div>
77

88

9-
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
9+
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
1010
<app-sub-menu [modules]="modules" [activeModule]="activeModule"></app-sub-menu>
1111
<div>
1212
<router-outlet></router-outlet>

src/app/integrations/business-central/business-central-main/business-central-mapping/business-central-mapping.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%] tw-z-[-1]"></div>
44
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%] tw-z-[-1]"></div>
5-
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
5+
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
66
<app-sub-menu [modules]="mappingPages" [activeModule]="mappingPages[0]"></app-sub-menu>
77
<div>
88
<router-outlet></router-outlet>

src/app/integrations/business-central/business-central-onboarding/business-central-onboarding-connector/business-central-onboarding-connector.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
77
<app-loader></app-loader>
88
</div>
9-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
9+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
1010
<div>
1111
<app-configuration-step-header
1212
[headerText]="'Connect to your Dynamics 365 Business Central account'"

src/app/integrations/business-central/business-central-shared/business-central-advanced-settings/business-central-advanced-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="'Advanced Settings'"

src/app/integrations/business-central/business-central-shared/business-central-export-settings/business-central-export-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="'Export Settings'"

src/app/integrations/business-central/business-central-shared/business-central-import-settings/business-central-import-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header [headerText]="'Import Settings'"
77
[contentText]="'In this section, you can choose the fields required to be imported from Dynamics 365 Business Central to ' + brandingConfig.brandName + '. '"

src/app/integrations/intacct/intacct-main/intacct-configuration/intacct-configuration.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%] tw-z-[-1]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%] tw-z-[-1]"></div>
33
<div class="tw-py-40-px">
4-
<div [ngClass]="brandingStyle.common.mainPaddingStyle">
4+
<div [ngClass]="brandingStyle.common.mainComponentPadding">
55
<app-sub-menu [activeModule]="activeModule" [modules]="modules" ></app-sub-menu>
66
</div>
77
<div>

src/app/integrations/intacct/intacct-main/intacct-export-log/intacct-completed-export-log/intacct-completed-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<app-loader></app-loader>
33
</div>
44

5-
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-border-tertiary" [ngClass]="brandingStyle.common.mainShadowStyle">
5+
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-border-tertiary" [ngClass]="brandingStyle.common.mainComponentShadow">
66
<div>
77
<app-export-log-filter *ngIf="totalCount > 0 || (isDateSelected || searchQuery)"
88
[exportLogForm]="exportLogForm"

src/app/integrations/intacct/intacct-main/intacct-export-log/intacct-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%]"></div>
33

4-
<div class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
4+
<div class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
55
<app-sub-menu *ngIf="brandingFeatureConfig.featureFlags.advancedSettings.skipExport" [modules]="modules" [activeModule]="activeModule"></app-sub-menu>
66
<div>
77
<router-outlet></router-outlet>

src/app/integrations/intacct/intacct-main/intacct-export-log/intacct-skip-export-log/intacct-skip-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<app-loader></app-loader>
33
</div>
44

5-
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-separator" [ngClass]="brandingStyle.common.mainShadowStyle">
5+
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-separator" [ngClass]="brandingStyle.common.mainComponentShadow">
66
<div>
77
<app-export-log-filter *ngIf="totalCount > 0 || (isDateSelected || searchQuery)"
88
[exportLogForm]="skipExportLogForm"

src/app/integrations/intacct/intacct-main/intacct-mapping/intacct-mapping.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%]"></div>
3-
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
3+
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
44
<app-sub-menu [modules]="mappingPages" [activeModule]="mappingPages[0]"></app-sub-menu>
55
<div>
66
<router-outlet></router-outlet>

src/app/integrations/intacct/intacct-shared/intacct-advanced-settings/intacct-advanced-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="brandingContent.intacct.configuration.advancedSettings.stepName"

src/app/integrations/intacct/intacct-shared/intacct-c1-import-settings/intacct-c1-import-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-border-tertiary tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-border-tertiary tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header [headerText]="'Import settings'"
77
[contentText]="brandingConfig.brandId === 'co' ? 'Choose the required import fields from Sage Intacct to Expense Management.' : 'Select the field information to import from Sage Intacct to ' + brandingConfig.brandName + '. '"

src/app/integrations/intacct/intacct-shared/intacct-export-settings/intacct-export-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="brandingContent.intacct.configuration.exportSetting.stepName"

src/app/integrations/intacct/intacct-shared/intacct-import-settings/intacct-import-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-separator tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="'Import Settings'"

src/app/integrations/landing/landing.component.html

+11-11
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<p *ngIf="!exposeC1Apps" class="tw-mt-1-px landing--divider"></p>
2222

23-
<div class="tw-pt-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
23+
<div class="tw-pt-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
2424
<div *ngIf="integrationTabs.ALL || integrationTabs.ACCOUNTING">
2525
<p class="landing--section-heading">
2626
Accounting
@@ -34,53 +34,53 @@
3434

3535
<div class="tw-flex tw-flex-wrap tw-gap-5">
3636
<div *ngIf="exposeApps.NETSUITE">
37-
<div class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.NETSUITE)">
37+
<div class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.NETSUITE)">
3838
<img src="assets/logos/netsuite-logo.png" class="tw-mt-[-16px]" width="120px" height="60px" />
3939
<span class="landing--accounting-app-name !tw-pt-18-px">
4040
NetSuite
4141
</span>
4242
</div>
4343
</div>
44-
<div *ngIf="exposeApps.INTACCT" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.SAGE_INTACCT)">
44+
<div *ngIf="exposeApps.INTACCT" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.SAGE_INTACCT)">
4545
<img src="assets/logos/intacct-logo.png" class="tw-mt-[-16px]" width="120px" height="60px" />
4646
<span class="landing--accounting-app-name !tw-pt-8-px">
4747
Sage Intacct
4848
</span>
4949
</div>
50-
<div *ngIf="exposeApps.QBO" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.QBO)">
50+
<div *ngIf="exposeApps.QBO" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.QBO)">
5151
<img class="tw-mt-10-px" src="assets/logos/quickbooks-logo.png" width="120px" />
5252
<span class="landing--accounting-app-name">
5353
QuickBooks Online
5454
</span>
5555
</div>
56-
<div *ngIf="exposeApps.XERO" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.XERO)">
56+
<div *ngIf="exposeApps.XERO" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openAccountingIntegrationApp(AccountingIntegrationApp.XERO)">
5757
<img src="assets/logos/xero-logo.png" class="tw-mt-[-20px]" width="65px" height="60px" />
5858
<span class="landing--accounting-app-name">
5959
Xero
6060
</span>
6161
</div>
62-
<div *ngIf="exposeApps.QBD && showQBDIIFIntegration" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.QBD)">
62+
<div *ngIf="exposeApps.QBD && showQBDIIFIntegration" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.QBD)">
6363
<img src="assets/logos/quickbooks-logo.png" width="120px" height="60px" />
6464
<span class="landing--accounting-app-name">
6565
QuickBooks Desktop (IIF)
6666
</span>
6767
</div>
6868
<!-- Direct -->
69-
<div *ngIf="exposeApps.QBD_DIRECT && org.allow_qbd_direct_integration" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.QBD_DIRECT)">
69+
<div *ngIf="exposeApps.QBD_DIRECT && org.allow_qbd_direct_integration" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.QBD_DIRECT)">
7070
<img src="assets/logos/quickbooks-logo.png" width="120px" height="60px" />
7171
<span class="landing--accounting-app-name tw-gap-2 tw-px-4 tw-flex tw-items-center">
7272
QuickBooks Desktop (Web Connector)
7373
<app-badge [theme]="ThemeOption.DARK" text="Beta"></app-badge>
7474
</span>
7575
</div>
76-
<div *ngIf="exposeApps.SAGE300" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.SAGE300)">
76+
<div *ngIf="exposeApps.SAGE300" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.SAGE300)">
7777
<img src="assets/logos/sage300-logo.svg" width="110px" height="60px" />
7878
<span class="landing--accounting-app-name tw-gap-2">
7979
Sage 300 CRE
8080
<app-badge *ngIf="!orgsToHideSage300BetaBadge.includes(org.fyle_org_id)" [theme]="ThemeOption.DARK" text="Beta"></app-badge>
8181
</span>
8282
</div>
83-
<div *ngIf="exposeApps.BUSINESS_CENTRAL && org.allow_dynamics" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.BUSINESS_CENTRAL)">
83+
<div *ngIf="exposeApps.BUSINESS_CENTRAL && org.allow_dynamics" class="landing--accounting-app tw-mt-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.BUSINESS_CENTRAL)">
8484
<img src="assets/logos/BusinessCentral-logo.svg" class="tw-mt-[-20px]" width="50px" height="60px" />
8585
<span class="landing--accounting-app-name tw-gap-2 tw-px-4 tw-flex tw-items-center">
8686
Dynamics 365 Business Central
@@ -100,7 +100,7 @@
100100
</p>
101101

102102
<div class="tw-flex">
103-
<div class="landing--accounting-app tw-mr-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.BAMBOO_HR)">
103+
<div class="landing--accounting-app tw-mr-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.BAMBOO_HR)">
104104
<img src="assets/logos/bamboo-hr-logo.svg" width="160px" height="60px" />
105105
<span class="landing--accounting-app-name">
106106
BambooHR
@@ -119,7 +119,7 @@
119119
</p>
120120

121121
<div class="tw-flex">
122-
<div class="landing--accounting-app tw-mr-20-px" [ngClass]="brandingStyle.common.mainShadowStyle" (click)="openInAppIntegration(InAppIntegration.TRAVELPERK)">
122+
<div class="landing--accounting-app tw-mr-20-px" [ngClass]="brandingStyle.common.mainComponentShadow" (click)="openInAppIntegration(InAppIntegration.TRAVELPERK)">
123123
<img src="assets/logos/travelperk-logo.svg" width="160px" height="60px" />
124124
<span class="landing--accounting-app-name">
125125
TravelPerk

src/app/integrations/netsuite/netsuite-main/netsuite-configuration/netsuite-configuration.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%]"></div>
33
<div class="tw-py-40-px">
4-
<div [ngClass]="brandingStyle.common.mainPaddingStyle">
4+
<div [ngClass]="brandingStyle.common.mainComponentPadding">
55
<app-sub-menu [activeModule]="activeModule" [modules]="modules" ></app-sub-menu>
66
</div>
77
<div>

src/app/integrations/netsuite/netsuite-main/netsuite-export-log/netsuite-complete-export-logs/netsuite-complete-export-logs.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<app-loader></app-loader>
33
</div>
44

5-
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-border-tertiary" [ngClass]="brandingStyle.common.mainShadowStyle">
5+
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-border-tertiary" [ngClass]="brandingStyle.common.mainComponentShadow">
66
<div>
77
<app-export-log-filter *ngIf="totalCount > 0 || (isDateSelected || searchQuery)"
88
[exportLogForm]="exportLogForm"

src/app/integrations/netsuite/netsuite-main/netsuite-export-log/netsuite-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%]"></div>
33

4-
<div class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
4+
<div class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
55
<app-sub-menu *ngIf="brandingFeatureConfig.featureFlags.advancedSettings.skipExport" [modules]="modules" [activeModule]="activeModule"></app-sub-menu>
66
<div>
77
<router-outlet></router-outlet>

src/app/integrations/netsuite/netsuite-main/netsuite-export-log/netsuite-skipped-export-log/netsuite-skipped-export-log.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<app-loader></app-loader>
33
</div>
44

5-
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-separator" [ngClass]="brandingStyle.common.mainShadowStyle">
5+
<div class="tw-rounded-8-px tw-bg-white tw-border-1-px tw-border-separator" [ngClass]="brandingStyle.common.mainComponentShadow">
66
<div>
77
<app-export-log-filter *ngIf="totalCount > 0 || (isDateSelected || searchQuery)"
88
[exportLogForm]="skipExportLogForm"

src/app/integrations/netsuite/netsuite-main/netsuite-mapping/netsuite-mapping.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-1 tw-h-84-px tw-w-[100%]"></div>
22
<div *ngIf="isGradientAllowed" class="tw-absolute tw-bg-header-2 tw-h-84-px tw-w-[100%]"></div>
3-
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainPaddingStyle">
3+
<div *ngIf="!isLoading" class="tw-py-40-px" [ngClass]="brandingStyle.common.mainComponentPadding">
44
<app-sub-menu [modules]="mappingPages" [activeModule]="mappingPages[0]"></app-sub-menu>
55
<div>
66
<router-outlet></router-outlet>

src/app/integrations/netsuite/netsuite-shared/netsuite-advanced-settings/netsuite-advanced-settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div *ngIf="isLoading" class="tw-flex tw-justify-center tw-items-center tw-h-screen">
22
<app-loader></app-loader>
33
</div>
4-
<div *ngIf="!isLoading" class="configuration--contents tw-border-border-tertiary tw-mt-6" [ngClass]="brandingStyle.common.configurationCommonStyle">
4+
<div *ngIf="!isLoading" class="configuration--contents tw-border-border-tertiary tw-mt-6" [ngClass]="brandingStyle.common.configurationContents">
55
<div>
66
<app-configuration-step-header
77
[headerText]="brandingContent.stepName"

0 commit comments

Comments
 (0)