| 123456789101112131415161718192021 |
- #list-main {
- position: relative;
-
- @include flexbox();
- @include flex-direction(column);
- @include themify($themes) {
- background-color: themed('body-background-color');
- }
- }
- #list-menu {
- @include themify($themes) {
- border-right: 1px solid themed('border-line-color');
- }
- }
- #list-side {
- @include themify($themes) {
- border-left: 1px solid themed('border-line-color');
- }
- }
|