Skip to content

Commit 819ef14

Browse files
authored
Merge pull request #38 from oslabs-beta/uiFinalCountdown
UI final countdown
2 parents c42607e + be30dbc commit 819ef14

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/client/components/containers/ScheduleContainer.jsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ function ScheduleContainer() {
1212
return (
1313
<div>
1414
<div className="is-flex is-flex-direction-row is-justify-content-center is-align-items-center mt-2">
15-
<div className="is-flex is-flex-direction-row is-justify-content-center is-align-items-center mr-2">
15+
<div className="is-flex is-flex-direction-row is-justify-content-center is-align-items-center">
1616
<span className="mr-2" style={{ fontWeight: 'bold' }}>
17-
Frequency (Seconds):
17+
<p>Frequency</p>
18+
<p>(Seconds):</p>
1819
</span>
1920
<input
2021
className={`${isDark ? 'is-dark-200': ''} ml-1 input input-is-medium is-info`}
21-
style={{ maxWidth: '15vh' }}
22+
style={{ width: '65px' }}
2223
type="number"
23-
min="1"
24+
// min="1"
2425
value={scheduleInterval}
2526
onChange={(e) => {
2627
setScheduleInterval(e.target.value);

src/client/components/containers/StoppedContainer.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ const StoppedContainer = (props) => {
5858
<center className="queue">Scheduled Requests</center>
5959
<div className="prettify-select is-align-self-center mt-3 mb-3">
6060
<button
61-
className={`button is-small is-danger ${isDark ? '' : 'is-outlined' } button-hover-color queue-clear`}
61+
className={`button is-small is-danger ${isDark ? '' : 'is-outlined' } button-hover-color`}
62+
style={{width: '190px'}}
6263
onClick={() => {
6364
scheduledReqResDelete();
6465
clearAllGraph();

0 commit comments

Comments
 (0)