From 7b38f523250b75d5deaedd347bff3c24247f3de1 Mon Sep 17 00:00:00 2001 From: Jeff Smith <37851214+eljefe223@users.noreply.github.com> Date: Mon, 16 Nov 2020 13:48:38 -0800 Subject: [PATCH] fix: radio group orientation "vertical" broken (#4123) --- .../fast-components/src/radio-group/radio-group.styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web-components/fast-components/src/radio-group/radio-group.styles.ts b/packages/web-components/fast-components/src/radio-group/radio-group.styles.ts index 0f599f0995d..6c4056458ea 100644 --- a/packages/web-components/fast-components/src/radio-group/radio-group.styles.ts +++ b/packages/web-components/fast-components/src/radio-group/radio-group.styles.ts @@ -11,10 +11,10 @@ export const RadioGroupStyles = css` display: flex; flex-wrap: wrap; } - [orientation="vertical"] { + :host([orientation="vertical"]) .positioning-region { flex-direction: column; } - [orientation="horizontal"] { + :host([orientation="horizontal"]) .positioning-region { flex-direction: row; } `;