|
- .code-config-list {
- display: flex;
- flex: 1;
- flex-direction: column;
- height: 100%;
- height: 100%;
- padding: 20px 0;
- background: white;
- box-shadow: 0px 3px 6px rgba(146, 146, 146, 0.09);
-
- &__header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 32px;
- margin-bottom: 30px;
- padding: 0 30px;
- color: @text-color;
- font-size: 15px;
- }
-
- &__content {
- display: flex;
- flex: 1;
- flex-wrap: wrap;
- gap: 20px;
- align-content: flex-start;
- width: 100%;
- margin-bottom: 30px;
- padding: 0 30px;
- overflow-y: auto;
- }
-
- &__empty {
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- }
-
- :global {
- .ant-pagination {
- margin-right: 30px;
- text-align: right;
- }
- }
- }
|