Skip to content

Commit 0ac2cc9

Browse files
committed
Fix visual alignment of buttons
1 parent f2435fa commit 0ac2cc9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

home.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@
102102

103103
#footer {
104104
display: flex;
105-
flex-wrap: wrap;
105+
flex-wrap: wrap;
106+
align-items: flex-start;
106107
justify-content: space-between;
107108
margin: 0px 15px 0px;
108109
}
@@ -130,15 +131,17 @@
130131
}
131132

132133

133-
#export {
134+
#secondary-controls button {
134135
margin-bottom: 15px;
136+
vertical-align: top;
135137
}
136138

137139
.button {
138140
background-color: #b5c8c9;
139141
border: 1px solid #b5c8c9;
140142
border-radius: 2px 2px 0 0;
141143
box-shadow: 0 4px #95a5a6;
144+
margin-bottom: 4px;
142145
color: #000;
143146
cursor: pointer;
144147
font-size: 14px;
@@ -152,13 +155,13 @@
152155
}
153156

154157
.button:hover {
155-
box-shadow: 0 2px #95a5a6;
158+
box-shadow: 0 2px #95a5a6;
156159
outline: none;
157160
transform: translateY(2px);
158161
}
159162

160163
.button:active {
161-
box-shadow: none;
164+
box-shadow: none;
162165
transform: translateY(4px);
163166
}
164167

@@ -192,8 +195,9 @@
192195
</div>
193196
<div>
194197
<input name="list" type="checkbox" checked id="list" />
195-
<label for="list">List&nbsp;Command&nbsp;Enabled</label>
198+
<label for="list">Enable&nbsp;List&nbsp;Command</label>
196199
</div>
200+
<button id="clear" class="button">Clear&nbsp;Log</button>
197201
<button id="export" class="button">Export&nbsp;Log</button>
198202
</div>
199203
</div>

0 commit comments

Comments
 (0)