array( 'display' => 'flex', 'align-items' => 'center', 'justify-content' => 'center', 'position' => 'fixed', 'right' => 'var(--wp--preset--spacing--small)', 'bottom' => 'var(--wp--preset--spacing--small)', 'width' => 'var(--wp--preset--spacing--large)', 'height' => 'var(--wp--preset--spacing--large)', 'background-color' => 'var(--wp--preset--color--foreground)', 'border-radius' => 'var(--wp--custom--border-radius--full)', 'cursor' => 'pointer', 'transform' => 'scale(0)', 'transition' => '.2s', ), '.ariafse-scroll-top svg path' => array( 'stroke' => 'var(--wp--preset--color--background)', ), ); $css .= parse_css( $css_output ); return $css; } /** * Scroll top inline js. */ function scroll_top_js( string $js ): string { $inline_js = <<= 100 ) { scrollTop.style.transform = 'scale(1)'; } else { scrollTop.style.transform = 'scale(0)'; } }, true); JS; $js .= $inline_js; return $js; }