Skip to content

Commit 71d1263

Browse files
Merge pull request #1636 from suma30/ezymath
Ezymath
2 parents 5f01b39 + fb334d6 commit 71d1263

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

Projects/ezymath-main/currencycalculator.html

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
font-family: "Jost", sans-serif;
1717
background-color: #d5f1f5;
1818
}
19+
.col-6{
20+
display: flex;
21+
flex-direction: column;
22+
align-items: center;
23+
}
1924

2025
.form__field {
2126
font-family: "Jost", sans-serif;
@@ -76,6 +81,9 @@
7681
font-weight: 800;
7782
color: hsl(229, 84%, 12%);
7883
}
84+
p{
85+
margin:0px;
86+
}
7987
</style>
8088
</head>
8189
<body>
@@ -191,7 +199,7 @@ <h5>From</h5>
191199
</select>
192200
<input type="number" id="curconin" class="form__field1" placeholder="Enter Side" value="0" ; oninput="curcon();">
193201
<h5>To</h5>
194-
<select id="curcon-2" class="form__field1" onchange="curcon()">
202+
<select id="curcon-2" class="form__field" onchange="curcon()">
195203
<option value="USD" class="form_field" style="background-color:var(--appblack);">USD
196204
</option>
197205
<option value="AED" class="form_field" style="background-color:var(--appblack);">AED
@@ -297,9 +305,9 @@ <h5>To</h5>
297305
<option value="ZAR" class="form_field" style="background-color:var(--appblack);">ZAR
298306
</option>
299307
</select>
300-
<label>
301-
<p id="curconou">0</p>
302-
</label>
308+
309+
<p id="curconou" class="form__field1">0</p>
310+
303311
</div>
304312
</div>
305313

0 commit comments

Comments
 (0)