File tree 3 files changed +40
-3
lines changed
3 files changed +40
-3
lines changed Original file line number Diff line number Diff line change 77
77
/>
78
78
79
79
<QuestionListEditor bind:value ={questions } />
80
- <QuestionInputEditor bind:data ={questions [0 ]} />
81
80
<button type ="submit" on:click ={handleSumbit }>Submit</button >
82
81
</form >
83
82
90
89
margin : 0 auto ;
91
90
max-width : 400px ;
92
91
}
92
+ /* :global(fieldset) {
93
+ border: none;
94
+ min-width: 0;
95
+ margin: 0px;
96
+ padding: 0px;
97
+ max-width: 100%;
98
+ width: 100%;
99
+ display: block;
100
+ } */
101
+ :global(legend ) {
102
+ font-size : 13px ;
103
+ font-weight : bold ;
104
+ margin-bottom : 10px ;
105
+ font-family : ' Poppins' ;
106
+ }
107
+
108
+ :global(.question ) {
109
+ padding : 20px 15px ;
110
+ width : calc (100% - 30px );
111
+ margin : 10px auto ;
112
+ background-color : #ffffff ;
113
+ border-radius : 10px ;
114
+ border-color : #c5c8c9 ;
115
+ border-width : 0 ;
116
+ border-style : solid ;
117
+ }
118
+
119
+ /* :global(label) {
120
+ display: flex;
121
+ } */
122
+
123
+ /* :global(input) {
124
+ display: flex;
125
+ } */
93
126
</style >
Original file line number Diff line number Diff line change 37
37
/>
38
38
<details >
39
39
<summary >Sample</summary >
40
- <BooleanQuestionInput bind:data />
40
+ <div class =" question" >
41
+ <BooleanQuestionInput bind:data />
42
+ </div >
41
43
</details >
42
44
</BaseEditor >
Original file line number Diff line number Diff line change 13
13
<input type ="color" name ="color-" bind:value ={data .value } />
14
14
<details >
15
15
<summary >Sample</summary >
16
- <ColorQuestionInput bind:data />
16
+ <div class =" question" >
17
+ <ColorQuestionInput bind:data />
18
+ </div >
17
19
</details >
18
20
</BaseEditor >
You can’t perform that action at this time.
0 commit comments