Skip to content

Commit

Permalink
[EmptyState] Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
laurkim committed Mar 29, 2024
1 parent 9783d61 commit deaddd5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,24 @@
}

.SkeletonImageContainer {
/* stylelint-disable-next-line -- Polaris component custom property */
/* stylelint-disable -- container custom property for size */
--pc-empty-state-skeleton-image-container-size: 226px;
display: flex;
align-items: center;
justify-content: center;
height: var(--pc-empty-state-skeleton-image-container-size);
width: var(--pc-empty-state-skeleton-image-container-size);
/* stylelint-enable -- container custom property for size */
}

.SkeletonImage {
/* stylelint-disable -- container custom property for placeholder size */
--pc-empty-state-skeleton-image-size: 145px;
background-color: var(--p-color-bg-fill-secondary);
border-radius: var(--p-border-radius-full);
height: var(--pc-empty-state-skeleton-image-size);
width: var(--pc-empty-state-skeleton-image-size);
/* stylelint-enable -- container custom property for placeholder size */

@media screen and (-ms-high-contrast: active) {
background-color: grayText;
Expand Down

0 comments on commit deaddd5

Please sign in to comment.