comp-manage.component.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 10px 0;
  32. flex: 1;
  33. background-color: white;
  34. border-radius: 10px;
  35. position: relative;
  36. }
  37. }
  38. .down{
  39. position: absolute;
  40. bottom: 200px;
  41. /* height: 100px; */
  42. line-height: 24px;
  43. text-wrap: wrap;
  44. /* padding-left: 24px; */
  45. /* padding: 0; */
  46. .a{
  47. padding: 10px 0;
  48. }
  49. .directions{
  50. margin-top: 10px;
  51. background: #F4CBCD;
  52. padding:10px 20px ;
  53. display: flex;
  54. align-items: center;
  55. span{
  56. margin-left: 8px;
  57. color: #C6233F;
  58. }
  59. }
  60. }
  61. ::ng-deep .ant-menu-sub.ant-menu-inline{
  62. background: #f9eaea;
  63. }
  64. ::ng-deep .ant-menu-light .ant-menu-item:hover{
  65. color: #c6233f !important;
  66. }
  67. ::ng-deep .ant-menu-light .ant-menu-submenu-title:hover{
  68. color: #c6233f !important;
  69. }
  70. ::ng-deep .ant-menu-submenu:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow{
  71. color: #c6233f !important;
  72. }
  73. ::ng-deep .ant-menu-inline .ant-menu-item::after{
  74. border-right: 3px solid #c6233f;
  75. }
  76. ::ng-deep .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{
  77. background-color: #f4cbcd;
  78. color: #c6233f;
  79. }
  80. ::ng-deep .ant-menu-submenu-selected{
  81. background-color: #f4cbcd;
  82. color: #c6233f !important;
  83. }
  84. ::ng-deep .ant-menu-light .ant-menu-submenu-active{
  85. color:black;
  86. }