2020-12-27 23:49:06 +01:00
|
|
|
@mixin RV-Menu {
|
|
|
|
|
|
|
|
&--vertical &__List {
|
|
|
|
@include RV-FlexRow__Container--vertical;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--horizontal &__List {
|
|
|
|
@include RV-FlexRow__Container--horizontal;
|
2021-01-02 20:31:02 +01:00
|
|
|
@include RV-FlexRow__Container--breakPoint(400px);
|
2020-12-27 23:49:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__List {
|
|
|
|
@include RV-FlexRow__Container($-prefix: '.RV-Menu');
|
|
|
|
@include RV-ElementList;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__Item {
|
|
|
|
@include RV-FlexRow__Item;
|
|
|
|
@include RV-FlexRow__Item--shorthands;
|
2021-01-02 20:31:02 +01:00
|
|
|
width: 100px;
|
2020-12-27 23:49:06 +01:00
|
|
|
|
|
|
|
.RV-Link {
|
|
|
|
padding: $-spacing-small;
|
|
|
|
background-color: beige;
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.RV-Menu {
|
|
|
|
@include RV-Menu;
|
|
|
|
}
|