| 12345678910111213141516171819202122232425262728293031323334353637 |
- .dashboard {
- height: calc(100vh - 48px - 48px);
- overflow-y: scroll;
- :global(.ant-pro-basicLayout-content) {
- margin: 24px 24px 0 24px !important;
- }
- // @media (max-width: 767.98px) {
- // .ant-pro-basicLayout-content {
- // margin: 0 !important;
- // }
- // }
- &::-webkit-scrollbar {
- display: none;
- }
- .staffItem {
- padding: 5px 8px 18px 8px;
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- &.active {
- background: #886ab5;
- color: white;
- }
- .extra {
- position: absolute;
- bottom: -2px;
- left: 8px;
- width: 30px;
- margin: 0 auto;
- white-space: nowrap;
- transform: scale(0.8);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
|