refactor: clean up unused custom css properties

This cleans up the unused/unnecessary css properties added around the
same time as the modal component. This mostly refers to variables that
started with --app. They have been removed and their uses have been
replaced with other defaults. The --warning-color and --success-color
properties still exist despite being unused since they seem to fit with
the --error-color which is already in use.
This commit is contained in:
Sylvia Crowe
2024-06-04 10:30:27 -07:00
parent 7429520d31
commit 73d52b24f2
2 changed files with 6 additions and 29 deletions
+5 -5
View File
@@ -20,25 +20,25 @@
margin-top: 25vh;
margin-left: auto;
margin-right: auto;
background: var(--modal-bg-color);
border: 1px solid var(--app-border-color);
background: var(--main-bg-color);
border: 1px solid var(--border-color);
.modal-header {
display: flex;
flex-direction: column;
padding: 20px 20px 10px;
border-bottom: 1px solid var(--modal-header-bottom-border-color);
border-bottom: 1px solid var(--border-color);
.modal-title {
margin: 0 0 5px;
color: var(--app-text-primary-color);
color: var(--main-text-color);
font-size: var(--title-font-size);
}
p {
margin: 0;
font-size: 0.8rem;
color: var(--app-text-secondary-color);
color: var(--secondary-text-color);
}
}