26 lines
No EOL
512 B
SCSS
26 lines
No EOL
512 B
SCSS
$modal-padding: 24px;
|
|
|
|
.ant-modal-close,
|
|
.ant-modal-max-btn {
|
|
color: rgba(255, 255, 255, .45);
|
|
|
|
&:hover {
|
|
color: rgba(255, 255, 255, .75);
|
|
}
|
|
}
|
|
|
|
.ant-modal-wrap-no-padding {
|
|
.ant-modal-body {
|
|
padding: 0;
|
|
}
|
|
|
|
.ant-table-tbody > tr > td:first-child,
|
|
.ant-table-thead > tr > th:first-child {
|
|
padding-left: $modal-padding;
|
|
}
|
|
|
|
.ant-table-tbody > tr > td:last-child,
|
|
.ant-table-thead > tr > th:last-child {
|
|
padding-right: $modal-padding;
|
|
}
|
|
} |