2024-02-18 20:11:06 +02:00
|
|
|
export default {
|
|
|
|
|
name: 'Scrollbar',
|
2026-01-06 16:22:52 +02:00
|
|
|
selector: [
|
|
|
|
|
'::-webkit-scrollbar-button',
|
|
|
|
|
'::-webkit-scrollbar-thumb',
|
|
|
|
|
'::-webkit-resizer',
|
|
|
|
|
],
|
2024-09-25 00:46:58 +03:00
|
|
|
notEditable: true, // for now
|
2024-02-18 20:11:06 +02:00
|
|
|
defaultRules: [
|
|
|
|
|
{
|
|
|
|
|
directives: {
|
2026-01-06 16:22:52 +02:00
|
|
|
background: '--wallpaper',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
2024-02-18 20:11:06 +02:00
|
|
|
}
|