-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[project-base] removed initial tab animation on product detail page (…
…#3579)
- Loading branch information
Showing
7 changed files
with
60 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
storefront/components/Blocks/Skeleton/SkeletonModuleComparisonAndWishlistButtons.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import Skeleton from 'react-loading-skeleton'; | ||
|
||
export const SkeletonModuleComparisonAndWishlistButtons: FC = () => <Skeleton className="h-28 lg:h-9" />; | ||
export const SkeletonModuleComparisonAndWishlistButtons: FC = () => ( | ||
<Skeleton className="h-full w-full" containerClassName="h-28 lg:h-6" /> | ||
); |
2 changes: 1 addition & 1 deletion
2
storefront/components/Blocks/Skeleton/SkeletonModuleProductDetailAddToCart.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Skeleton from 'react-loading-skeleton'; | ||
|
||
export const SkeletonModuleProductDetailAddToCart: FC = () => ( | ||
<Skeleton className="h-12" containerClassName="w-full h-12" /> | ||
<Skeleton className="h-[52px]" containerClassName="w-full h-[52px]" /> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters