_page_switch.scss 593 Bytes
/*
 * @description: header css
 * @author: chenglong.wang@yoho.cn
 * @date: 2015/4/16
 */

.switch-page {
    margin-top: 35px;
    height: 20px;
    position: relative;

    > a {
        @include hide-text();
    }

    @each $switch in prev, next {
        .switch-#{$switch} {
            @include retina-sprite($icons, #{$switch}, false, true);
        }
        @if $switch == prev {
            .switch-#{$switch} {
                left: 0;
            }
        }

        @if $switch == next {
            .switch-#{$switch} {
                right: 0;
            }
        }
    }
}