17 lines
328 B
SCSS
17 lines
328 B
SCSS
.menuGroup {
|
|
border-bottom: 1px solid var(--menu-separator);
|
|
|
|
&:first-child > *:first-child {
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
}
|
|
|
|
&:last-child > *:last-child {
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|