mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
fix(range): allow overflow on range bar container (#26751)
This commit is contained in:
@ -763,7 +763,16 @@ Developers can dismiss this warning by removing their usage of the "legacy" prop
|
||||
|
||||
<div class="range-bar-container">
|
||||
<div class="range-bar" role="presentation" part="bar" />
|
||||
<div class="range-bar range-bar-active" role="presentation" style={barStyle} part="bar-active" />
|
||||
<div
|
||||
class={{
|
||||
'range-bar': true,
|
||||
'range-bar-active': true,
|
||||
'has-ticks': ticks.length > 0,
|
||||
}}
|
||||
role="presentation"
|
||||
style={barStyle}
|
||||
part="bar-active"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{renderKnob(rtl, {
|
||||
|
Reference in New Issue
Block a user