31 lines
526 B
SCSS
31 lines
526 B
SCSS
.browse {
|
|
|
|
// Description
|
|
&__description {
|
|
text-align: center;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
// Continents
|
|
&__continents {
|
|
text-align: center;
|
|
|
|
button {
|
|
margin: 0 8px;
|
|
}
|
|
}
|
|
|
|
// Locations
|
|
&__locations {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: center;
|
|
max-width: 1200px;
|
|
margin: 128px auto 80px;
|
|
justify-items: center;
|
|
|
|
.location {
|
|
margin: 0 40px 80px;
|
|
}
|
|
}
|
|
} |