Tanya 68d280e8f5 feat: Add new analysis documents and update installation scripts for backend integration
This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
2025-12-30 15:04:32 -05:00

66 lines
1.3 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
}
body {
margin: 0;
min-height: 100vh;
}
/* Custom scrollbar styling for similar faces container */
.similar-faces-scrollable {
/* Firefox */
scrollbar-width: auto;
scrollbar-color: #4B5563 #F3F4F6;
}
.similar-faces-scrollable::-webkit-scrollbar {
/* Chrome, Safari, Edge */
width: 12px;
}
.similar-faces-scrollable::-webkit-scrollbar-track {
background: #F3F4F6;
border-radius: 6px;
}
.similar-faces-scrollable::-webkit-scrollbar-thumb {
background: #4B5563;
border-radius: 6px;
border: 2px solid #F3F4F6;
}
.similar-faces-scrollable::-webkit-scrollbar-thumb:hover {
background: #374151;
}
.role-permissions-scroll {
scrollbar-width: auto;
scrollbar-color: #1d4ed8 #e5e7eb;
}
.role-permissions-scroll::-webkit-scrollbar {
width: 16px;
height: 16px;
background-color: #bfdbfe;
}
.role-permissions-scroll::-webkit-scrollbar-track {
background: #bfdbfe;
border-radius: 8px;
}
.role-permissions-scroll::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
border-radius: 8px;
border: 3px solid #bfdbfe;
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}