diff --git a/src/components/platformSection.tsx b/src/components/platformSection/index.tsx similarity index 95% rename from src/components/platformSection.tsx rename to src/components/platformSection/index.tsx index 4c9d8c2c541e6..9e6e8eb2b2a63 100644 --- a/src/components/platformSection.tsx +++ b/src/components/platformSection/index.tsx @@ -2,6 +2,8 @@ import {DocNode, getCurrentPlatformOrGuide, getPlatform} from 'sentry-docs/docTr import {serverContext} from 'sentry-docs/serverContext'; import {Platform, PlatformGuide} from 'sentry-docs/types'; +import styles from './style.module.css'; + function getPlatformsWithFallback( rootNode: DocNode, platformOrGuide: Platform | PlatformGuide @@ -87,5 +89,5 @@ export function PlatformSection({ return null; } - return children; + return
{children}
; } diff --git a/src/components/platformSection/style.module.css b/src/components/platformSection/style.module.css new file mode 100644 index 0000000000000..c234e4a19f961 --- /dev/null +++ b/src/components/platformSection/style.module.css @@ -0,0 +1,5 @@ +.no-space-around-ul { + & ul, & + ul { + margin: 0; + } +}