Skip to content

Commit

Permalink
fix: radio group orientation "vertical" broken (microsoft#4123)
Browse files Browse the repository at this point in the history
  • Loading branch information
eljefe223 authored Nov 16, 2020
1 parent c7059b3 commit 7b38f52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
`;

0 comments on commit 7b38f52

Please sign in to comment.