mojotech / sass2stylus

Kewl
http://sass2stylus.com/
79 stars 18 forks source link

[CONVERT] Error prompt #100

Open dhniels opened 6 years ago

dhniels commented 6 years ago

"Sorry, we were not able to process your code. Please create a new issue and copy/paste your code at the provided link to help us fix the issue https://github.com/mojotech/sass2stylus/issues/new"

.staff {
    padding: 0;
    margin: 0;
    list-style: none;
    @extend %flexbox;
    @include flex-flow(wrap);
    text-align: center;
    li {
        padding: 30px 20px;
        box-sizing: border-box;
        width: 100%;

        @media #{$tablet} {
            @include flex(1, 1, 50%);
        }

        @media #{$desktop} {
            @include flex(1, 1, 33%);
        }

    }

    .name {
        margin-top: 20px;
    }

    .position {
        color: #666;
        font-size: .8em;
    }
}