1. Change Password fixed. 2. Personal Data implemented. 3. New alerts style. 4. Better dropdowns.
This commit is contained in:
36
index.css
Normal file
36
index.css
Normal file
@@ -0,0 +1,36 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
/* Custom scrollbar */
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #49454F;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* Hide number input arrows */
|
||||
input[type=number]::-webkit-inner-spin-button,
|
||||
input[type=number]::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Dropdown Styles for Dark Mode */
|
||||
select option {
|
||||
background-color: #2B2930; /* surface-container-high */
|
||||
color: #E6E0E9; /* on-surface */
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* Ensure select itself has correct background when closed */
|
||||
select {
|
||||
background-color: transparent;
|
||||
color: inherit;
|
||||
}
|
||||
Reference in New Issue
Block a user