File tree 1 file changed +5
-4
lines changed
packages/feedback/src/widget
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ export function createDialogStyles(d: Document): HTMLStyleElement {
38
38
top: var(--top);
39
39
40
40
border: var(--border);
41
- padding: 24px;
42
41
border-radius: 20px;
43
42
background-color: var(--background);
44
43
color: var(--foreground);
@@ -61,7 +60,7 @@ export function createDialogStyles(d: Document): HTMLStyleElement {
61
60
justify-content: space-between;
62
61
font-size: 20px;
63
62
font-weight: 600;
64
- padding: 0 ;
63
+ padding: 24px 24px 0 24px ;
65
64
margin: 0;
66
65
margin-bottom: 16px;
67
66
}
@@ -76,7 +75,7 @@ export function createDialogStyles(d: Document): HTMLStyleElement {
76
75
overflow: auto;
77
76
flex-direction: column;
78
77
gap: 16px;
79
- padding: 0;
78
+ padding: 0 24px 24px ;
80
79
}
81
80
82
81
.form__error-container {
@@ -118,8 +117,10 @@ export function createDialogStyles(d: Document): HTMLStyleElement {
118
117
font-weight: 500;
119
118
padding: 6px 12px;
120
119
}
120
+
121
121
.form__input:focus {
122
- border-color: var(--input-border-focus);
122
+ outline: 1px solid transparent;
123
+ outline-color: var(--input-border-focus);
123
124
}
124
125
125
126
.form__input--textarea {
You can’t perform that action at this time.
0 commit comments