mirror of
https://github.com/wavetermdev/backup.git
synced 2026-08-05 13:57:07 -07:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user