mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
19 lines
543 B
TypeScript
19 lines
543 B
TypeScript
import { ComponentMetadata } from '@/components/types'
|
|
|
|
export const component: ComponentMetadata = {
|
|
name: 'elegantScrollbar',
|
|
entry: none,
|
|
displayName: '使用细滚动条',
|
|
description: '使用浏览器的滚动条风格替代系统的滚动条, 不过 macOS 系统滚动条比浏览器做得好一些, 因此不建议 macOS 使用此功能.',
|
|
tags: [
|
|
componentsTags.style,
|
|
componentsTags.general,
|
|
],
|
|
instantStyles: [
|
|
{
|
|
name: 'elegant-scrollbar',
|
|
style: () => import('./scrollbar.scss'),
|
|
},
|
|
],
|
|
}
|