refactor(styles): replace custom scroll classes with overflow utils
Remove the deprecated scroll.scss stylesheet and its import from the main SCSS index file. Replace all usages of the custom .scroll-y and .scroll-x classes across Vue templates with the corresponding overflow utility classes. Fix a malformed scroll-view tag in the goods album page template.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view class="explore-cards">
|
||||
<scroll-view class="explore-scroll" scroll-x show-scrollbar="false">
|
||||
<scroll-view class="explore-scroll" overflow-x-autoshow-scrollbar="false">
|
||||
<view class="explore-track">
|
||||
<view v-for="(item, index) in normalizedList" :key="getItemKey(item, index)" class="explore-card"
|
||||
:class="`is-${item.tone}`" hover-class="is-pressed" hover-stay-time="80"
|
||||
|
||||
Reference in New Issue
Block a user