fix warning related to casing on class attribute

This commit is contained in:
2024-08-09 04:35:40 +02:00
parent adec3bcde0
commit 7e0ee1f475
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ export const ImageSliderBlock = ({
pageContent?: boolean; pageContent?: boolean;
}) => { }) => {
return ( return (
<div className={styles.imageSliderBlock} data-hero={hero} data-pageContent={pageContent}> <div className={styles.imageSliderBlock} data-hero={hero} data-pagecontent={pageContent}>
<Swiper <Swiper
pagination={{ pagination={{
type: "fraction", type: "fraction",

View File

@ -46,7 +46,7 @@
margin-bottom: 0; margin-bottom: 0;
} }
&[data-pageContent]{ &[data-pagecontent]{
&:last-child { &:last-child {
margin-bottom: calc(var(--spacing-section-bottom)*-1); margin-bottom: calc(var(--spacing-section-bottom)*-1);
} }