Skip to content

Commit 09852bd

Browse files
committed
Fix form padding issue
1 parent d1a6e4a commit 09852bd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Diff for: .editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ root = true
22

33
[*]
44
indent_style = tab
5-
indent_size = 1
5+
indent_size = 2
66
end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true

Diff for: stylesheets/scss/main.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,10 @@ strong {
101101

102102
.form-container {
103103
margin-bottom: $result-separation;
104-
overflow-x: hidden;
105-
overflow-y: auto;
106104

107105
form {
108106
float: left;
107+
overflow: auto;
109108
width: 600px;
110109

111110
.header-row {
@@ -198,6 +197,8 @@ strong {
198197

199198
.results {
200199
clear: both;
200+
float: left;
201+
margin-top: $result-separation;
201202

202203
.error {
203204
color: $pink;

0 commit comments

Comments
 (0)