Spectre: Getting column to collapse at <600px

Created on 7 Nov 2017  路  4Comments  路  Source: picturepan2/spectre

I have a 3 column format where I want the rightmost column to become a row at <= 600px wide. Can't figure it out. Am trying stuff like this to no avail:

@media (max-width: 600px) {
    .container {
        display: flex;
        flex-flow: column;
    }
}

The offending file is at GitHub Source, Preview

Bonus points for anyone who can tell me why bluerobot.svg doesn't display.

question

Most helpful comment

@tomcam

<div class="columns">
   <div class="column col-4 col-sm-6"></div>
   <div class="column col-4 col-sm-6"></div>
   <div class="column col-4 col-sm-12"></div>
</div>

All 4 comments

Remove irrelevant debug line

@tomcam

<div class="columns">
   <div class="column col-4 col-sm-6"></div>
   <div class="column col-4 col-sm-6"></div>
   <div class="column col-4 col-sm-12"></div>
</div>

Oh my goodness. Worked perfectly. Thank you.

@tomcam You're welcome.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

kwstaskara picture kwstaskara  路  3Comments

roemhildtg picture roemhildtg  路  4Comments

9Emi picture 9Emi  路  3Comments

alighasemzadeh picture alighasemzadeh  路  4Comments

kaneschutzman picture kaneschutzman  路  3Comments