comp-manage.component.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .page{
  2. font-family: PingFang SC;
  3. display: flex;
  4. // height: calc(100% - 60px);
  5. // overflow-y: scroll;
  6. overflow-y: hidden;
  7. height: 100vh;
  8. background-color: #F9EAEA;
  9. padding: 10px;
  10. .content-left{
  11. position: relative;
  12. background-color:#f9eaea;
  13. // width: 248px;
  14. overflow: hidden;
  15. .btn-menu{
  16. padding: 10px;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. .left-fonter{
  22. width: 248px;
  23. position: absolute;
  24. bottom: 0;
  25. left: 0;
  26. }
  27. }
  28. .preview{
  29. height: 100%;
  30. overflow-y: scroll;
  31. padding: 0 0 40px 0;
  32. flex: 1;
  33. background-color: white;
  34. border-radius: 10px;
  35. position: relative;
  36. }
  37. }
  38. ::ng-deep .ant-menu-sub.ant-menu-inline{
  39. background: #f9eaea;
  40. }
  41. ::ng-deep .ant-menu-light .ant-menu-item:hover{
  42. color: #c6233f !important;
  43. }
  44. ::ng-deep .ant-menu-light .ant-menu-submenu-title:hover{
  45. color: #c6233f !important;
  46. }
  47. ::ng-deep .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow{
  48. color: #c6233f !important;
  49. }
  50. ::ng-deep .ant-menu-inline .ant-menu-item::after{
  51. border-right: 3px solid #c6233f;
  52. }
  53. ::ng-deep .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{
  54. background-color: #f4cbcd;
  55. color: #c6233f;
  56. }
  57. ::ng-deep .ant-menu-submenu-selected{
  58. background-color: #f4cbcd;
  59. color: #c6233f !important;
  60. }
  61. ::ng-deep .ant-menu-light .ant-menu-submenu-active{
  62. color:black;
  63. }