Navbar with two rows with RSCSS

310 Views Asked by At

I' trying to use RSCSS on my project.

I've a navbar with two rows and each row has columns.

Is this correct or should I use something different?

.top-navbar
  .subnavbar-one
    .column
    .column
  .subnavbar-two
    .column
    .column
1

There are 1 best solutions below

1
On BEST ANSWER

Auto-replying because I think I've found the solution.

I should use a structure like this:

.top-navbar
  .subnavbar.-one
    .column
    .column
  .subnavbar.-two
    .column
    .column

Where -one and -two are two modifiers of the subnavbar element.