scrimba
Bulma CSS
Navbars in Bulma CSS
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Navbars in Bulma CSS
AboutCommentsNotes
Navbars in Bulma CSS
Expand for more info
styles
helpers.css
run
preview
console
.center, .center-column, .top, .right, .bottom, .left {
display: flex;
justify-content: center;
align-items: center;
}

.center-column {
flex-direction: column;
}

.top { align-items: flex-start; }
.right { justify-content: flex-end; }
.bottom { align-items: flex-end; }
.left { justify-content: flex-start; }

.single-spaced, .single-spaced * {
line-height: 1;
}

@media (max-width: 1024px) {
.desktop {
display: none;
}
}
Console
index.html
-7:04