reactbits-mcp-server
Version:
MCP Server for React Bits - Access 99+ React components with animations, backgrounds, and UI elements
70 lines (59 loc) • 1.09 kB
CSS
.scroll-list-container {
position: relative;
width: 500px;
}
.scroll-list {
max-height: 400px;
overflow-y: auto;
padding: 16px;
}
.scroll-list::-webkit-scrollbar {
width: 8px;
}
.scroll-list::-webkit-scrollbar-track {
background: #060010;
}
.scroll-list::-webkit-scrollbar-thumb {
background: #271E37;
border-radius: 4px;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
.item {
padding: 16px;
background-color: #170D27;
border-radius: 8px;
margin-bottom: 1rem;
}
.item.selected {
background-color: #271E37;
}
.item-text {
color: white;
margin: 0;
}
.top-gradient {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 50px;
background: linear-gradient(to bottom, #060010, transparent);
pointer-events: none;
transition: opacity 0.3s ease;
}
.bottom-gradient {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to top, #060010, transparent);
pointer-events: none;
transition: opacity 0.3s ease;
}