- Move all Launcher components to LANCommander.Launcher.UI namespace - Move all SCSS files next to components (when possible) - Refactor styles that control overflow of content into titlebar to MainWindow only - Remove use in launcher UI of SDK.Client
26 lines
No EOL
509 B
SCSS
26 lines
No EOL
509 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;
|
|
}
|
|
} |