| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .TopicSetting {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- background-color: rgb(239, 239, 239);
- :global {
- .ruleTop {
- border-radius: 4px;
- padding: 15px 20px 25px 20px;
- background-color: #fff;
- box-shadow: 3px 0px 10px 0px #d5d5d9;
- height: 100%;
- .toprule {
- display: flex;
- justify-content: space-between;
- align-items: start;
- margin-bottom: 10px;
- .pageTitle {
- .exportBtn {
- width: 100px;
- height: 40px;
- }
- }
- .addTopicBtn {
- // position: absolute;
- // right: 2.5%;
- // top: 3%;
- // height: 30px;
- cursor: pointer;
- margin-left: 20px;
- position: absolute;
- right: 24px;
- // transform: translateY(-50%);
- }
- }
- .tableBox1 {
- border-radius: 4px;
- overflow: hidden;
- margin-top: 3%;
- padding: 0px;
- .ant-table-body {
- height: 500px;
- overflow-y: auto !important;
- overflow-y: overlay !important;
- .ant-table-row {
- .ant-table-cell {
- padding: 10px;
- }
- }
- }
- }
- }
- }
- }
|