Update header.php to include custom stylesheet: Added a new custom.css file for additional styling alongside the main stylesheet, enhancing the design flexibility of the application.
This commit is contained in:
12
public/assets/css/custom.css
Normal file
12
public/assets/css/custom.css
Normal file
@@ -0,0 +1,12 @@
|
||||
.btn-tertiary {
|
||||
color: var(--text-primary);
|
||||
background: transparent;
|
||||
border: 1px solid rgba(255, 255, 255, 0.25);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-tertiary:hover {
|
||||
border-color: var(--primary-color);
|
||||
color: var(--primary-color);
|
||||
background: rgba(255, 81, 249, 0.08);
|
||||
}
|
||||
Reference in New Issue
Block a user