カラムを左右入れ替える / Swap columns left and right
Row > CSS Style
1 |
flex-direction: row-reverse |
カラムを横並びのままにする / Keep columns side by side
Row > Row Class
1 |
parallels |
SASS / CSS
1 2 3 4 5 6 7 8 9 10 11 12 |
@media screen and (min-width: 539px) and (max-width: 768px) // 要調整 539px < width <= 768px .parallels -webkit-flex-direction: row !important -ms-flex-direction: row !important flex-direction: row !important .panel-grid-cell width: initial !important min-width: 36% !important // 要調整 .panel-grid-cell padding-right: 30px !important // 要調整 .panel-grid-cell:last-child padding-right: 0 !important // 要調整 |