_list.scss 359 B

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