_list.scss 398 B

123456789101112131415161718192021
  1. #list-main {
  2. position: relative;
  3. @include flexbox();
  4. @include flex-direction(column);
  5. @include themify($themes) {
  6. background-color: themed('body-background-color');
  7. }
  8. }
  9. #list-menu {
  10. @include themify($themes) {
  11. border-right: 1px solid themed('border-line-color');
  12. }
  13. }
  14. #list-side {
  15. @include themify($themes) {
  16. border-left: 1px solid themed('border-line-color');
  17. }
  18. }