Skip to content

Commit

Permalink
improve UI
Browse files Browse the repository at this point in the history
  • Loading branch information
cnkang committed Aug 19, 2024
1 parent dba9a2d commit 6688ead
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
ul li {
font-size: 0.9rem;
}

.operations-container,
.range-container,
.result-container,
.operands-container {
flex-direction: column;
}
}

@media (max-width: 480px) {
Expand Down Expand Up @@ -137,7 +144,10 @@ form {
justify-content: space-between;
}

.operations-container, .range-container, .result-container, .operands-container {
.operations-container,
.range-container,
.result-container,
.operands-container {
display: flex;
gap: 5px;
}
Expand All @@ -147,9 +157,3 @@ form {
color: #333333;
padding: 5px;
}

@media (max-width: 768px) {
.operations-container, .range-container, .result-container, .operands-container {
flex-direction: column;
}
}

0 comments on commit 6688ead

Please sign in to comment.