Skip to content

Commit

Permalink
fix style lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayadav09 committed Mar 6, 2024
1 parent 3f46880 commit 33ec5b8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ const ImageUploaderWithText = ( { image, imageSetter } ) => {
'nfd-onboarding-image-uploader--with-text--not-dashed':
isImageUploaded,
'nfd-onboarding-image-uploader--with-text--not-dashed__dark':
pngLogoBgTheme === THEME_DARK,
isImageUploaded && pngLogoBgTheme === THEME_DARK,
'nfd-onboarding-image-uploader--with-text--not-dashed__light':
pngLogoBgTheme === THEME_LIGHT,
isImageUploaded && pngLogoBgTheme === THEME_LIGHT,
}
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,28 @@
border: 1.25px solid rgba(var(--nfd-onboarding-primary-rgb), 0.5);
align-items: stretch;

&__dark{
background-color: rgba(0,0,0,0.7);
&__dark {
background-color: rgba(0, 0, 0, 0.7);

.nfd-onboarding-image-uploader--with-text__site_logo__preview__details{
color: white;
.nfd-onboarding-image-uploader--with-text__site_logo__preview__details {
color: #fff;
}
.nfd-onboarding-image-uploader--with-text__site_logo__preview__reset__button__icon{
fill: white;

.nfd-onboarding-image-uploader--with-text__site_logo__preview__reset__button__icon {
fill: #fff;
}
}

&__light{
background-color: rgba(255,255,255,0.7);

.nfd-onboarding-image-uploader--with-text__site_logo__preview__details{
color: black;
}
.nfd-onboarding-image-uploader--with-text__site_logo__preview__reset__button__icon{
fill:black;
}
&__light {
background-color: rgba(255, 255, 255, 0.7);

.nfd-onboarding-image-uploader--with-text__site_logo__preview__details {
color: #000;
}

.nfd-onboarding-image-uploader--with-text__site_logo__preview__reset__button__icon {
fill: #000;
}
}
}
border-radius: 8px;
Expand Down

0 comments on commit 33ec5b8

Please sign in to comment.