ScrollHintを画像に適用する
1 2 3 | < div class = "js-scrollable" > < figure >< img src = "URL" alt = "" ></ figure > </ div > |
1 2 3 4 5 6 7 8 9 10 | .js-scrollable { figure { max-width : 1000px ; margin : 0 auto ; @include sm { max-width : inherit ; width : 700px ; } } } |