updates to tables and expanded them to full
This commit is contained in:
parent
e8fbe76f2e
commit
065d3943f6
6 changed files with 118 additions and 198 deletions
|
|
@ -50,73 +50,39 @@
|
|||
}
|
||||
|
||||
@layer components {
|
||||
/* Global sleek dark-themed scrollbars for all elements */
|
||||
/* Global dark-themed scrollbars with better contrast */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgb(74 74 74) rgb(26 26 26);
|
||||
scrollbar-color: rgb(115 115 115) rgb(40 40 40);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: rgb(26 26 26);
|
||||
border-radius: 4px;
|
||||
background: rgb(40 40 40);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: rgb(74 74 74);
|
||||
border-radius: 4px;
|
||||
border: 1px solid rgb(42 42 42);
|
||||
background-color: rgb(115 115 115);
|
||||
border-radius: 5px;
|
||||
border: 2px solid rgb(40 40 40);
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:hover {
|
||||
background-color: rgb(90 90 90);
|
||||
background-color: rgb(140 140 140);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:active {
|
||||
background-color: rgb(106 106 106);
|
||||
background-color: rgb(160 160 160);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-corner {
|
||||
background: rgb(26 26 26);
|
||||
}
|
||||
/* Global scrollbar for the entire app */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgb(26 26 26) transparent;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: rgb(0 0 0);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: rgb(26 26 26);
|
||||
border-radius: 4px;
|
||||
border: 1px solid rgb(0 0 0);
|
||||
transition: background-color 0.2s ease;
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:hover {
|
||||
background-color: rgb(42 42 42);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb:active {
|
||||
background-color: rgb(60 60 60);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-corner {
|
||||
background: rgb(0 0 0);
|
||||
background: rgb(40 40 40);
|
||||
}
|
||||
|
||||
/* Trading specific styles */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue