From 8ea71e41a0638d6d6137efd144e8528a5eb68108 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Sun, 24 Jul 2022 21:23:56 +0300 Subject: [PATCH] fix styles --- .../SignupQuestionsWidget/QuestionList.tsx | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx b/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx index c61989d..b69ce32 100644 --- a/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx +++ b/src/components/Widgets/SignupQuestionsWidget/QuestionList.tsx @@ -8,7 +8,7 @@ import OptionsWidget from "./OptionsWidget"; import TypeWidget from "./TypeWidget"; import QuestionElement from "./Question"; -const WidgetRow = styled(Draggable)` +const WidgetRow = styled.div` margin-bottom: 1rem; display: flex; flex-flow: column nowrap; @@ -60,23 +60,23 @@ class QuestionList extends React.Component { const optionsWidget = ; const typeSelectWidget = ; return ( - - - - - {typeSelectWidget} - {optionsWidget} - - - + + + + + {typeSelectWidget} + {optionsWidget} + + + ); }); }