Skip to content

Commit 4fbbf16

Browse files
committed
fix: invisible input text and modal close button padding in coordinate-polar and derivative-calculator
1 parent 4c1414b commit 4fbbf16

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

web-app/css/styles.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3148,6 +3148,7 @@ body {
31483148
.modal-content {
31493149
padding: 1.5rem;
31503150
border-radius: 16px;
3151+
position: relative;
31513152
}
31523153
}
31533154

@@ -4067,7 +4068,7 @@ body {
40674068
color: var(--footer-card-color);
40684069
box-shadow: inset 0 1px 0 rgba(252, 176, 91, 0.08);
40694070
border-color: rgba(252, 176, 91, 0.1);
4070-
}
4071+
40714072
}
40724073

40734074
.project-card h3 {

web-app/js/projects/coordinate-polar-transform.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,15 @@ function getCoordinatePolarTransformHTML() {
8585
outline:none;
8686
background-color:var(--bg-color);
8787
border:1px solid white;
88+
color: var(--text-color);
8889
}
8990
#cartesianY{
9091
padding:15px;
9192
border-radius:30px;
9293
outline:none;
9394
background-color:var(--bg-color);
9495
border:1px solid white;
96+
color: var(--text-color);
9597
}
9698
.btn-primary{
9799
padding:15px;

web-app/js/projects/derivative-calculator.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,12 @@ function getDerivativeCalculatorHTML() {
7676
background-color:var(--bg-color);
7777
outline:none;
7878
border:1px solid white;
79+
color: var(--text-color);
7980
}
8081
button{
8182
padding:15px;
8283
border-radius:30px;
84+
color: var(--text-color);
8385
}
8486
</style>
8587
`;

0 commit comments

Comments
 (0)