Made changes to CSS and merged together.
This commit is contained in:
@@ -15,40 +15,40 @@
|
||||
|
||||
/* Primary button (e.g., Save, Confirm) */
|
||||
.btn-primary {
|
||||
background: #667eea;
|
||||
background: var(--btn-primary);
|
||||
color: #fff;
|
||||
}
|
||||
.btn-primary:hover,
|
||||
.btn-primary:focus {
|
||||
background: #5a67d8;
|
||||
background: var(--btn-primary-hover);
|
||||
}
|
||||
|
||||
/* Secondary button (e.g., Cancel) */
|
||||
.btn-secondary {
|
||||
background: #f3f3f3;
|
||||
color: #666;
|
||||
background: var(--btn-secondary);
|
||||
color: var(--btn-secondary-text);
|
||||
}
|
||||
.btn-secondary:hover,
|
||||
.btn-secondary:focus {
|
||||
background: #e2e8f0;
|
||||
background: var(--btn-secondary-hover);
|
||||
}
|
||||
|
||||
/* Danger button (e.g., Delete) */
|
||||
.btn-danger {
|
||||
background: #ef4444;
|
||||
background: var(--btn-danger);
|
||||
color: #fff;
|
||||
}
|
||||
.btn-danger:hover,
|
||||
.btn-danger:focus {
|
||||
background: #dc2626;
|
||||
background: var(--btn-danger-hover);
|
||||
}
|
||||
|
||||
/* Green button (e.g., Confirm) */
|
||||
.btn-green {
|
||||
background: #22c55e;
|
||||
background: var(--btn-green);
|
||||
color: #fff;
|
||||
}
|
||||
.btn-green:hover,
|
||||
.btn-green:focus {
|
||||
background: #16a34a;
|
||||
background: var(--btn-green-hover);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user