Skip to content

Commit 7a786f7

Browse files
committed
Fix some CSS visual bugs
1 parent ebfc4b0 commit 7a786f7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/fields/fieldChecklist.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,12 @@
112112
.mainRow {
113113
cursor: pointer;
114114
position: relative;
115+
padding-right: 10px;
115116
116117
.arrow {
117118
position: absolute;
118-
right: -6px;
119-
top: 4px;
119+
right: -9px;
120+
top: 3px;
120121
width: 16px;
121122
height: 16px;
122123

src/formGenerator.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -393,13 +393,13 @@ div
393393
}
394394
395395
&.featured {
396-
label {
396+
> label {
397397
font-weight: bold;
398398
}
399399
}
400400
401401
&.required {
402-
label:after {
402+
> label:after {
403403
content: "*";
404404
font-weight: normal;
405405
color: Red;
@@ -410,7 +410,7 @@ div
410410
}
411411
412412
&.disabled {
413-
label {
413+
> label {
414414
color: #666;
415415
font-style: italic;
416416
}

0 commit comments

Comments
 (0)