Skip to content

Commit

Permalink
fix: extension detail settings style
Browse files Browse the repository at this point in the history
  • Loading branch information
buqiyuan committed Feb 15, 2023
1 parent d878582 commit d377eea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ import { SettingService } from 'eo/workbench/browser/src/app/modules/system-sett
@Component({
selector: 'eo-extension-setting',
template: `
<div class="sticky top-0 py-[10px] border-solid border-0 border-b-[1px] z-10 mb-[3px]" style="border-color: var(--border-color)">
<div
class="sticky top-0 py-[10px] border-solid border-0 border-b-[1px] z-10 mb-[3px]"
style="border-color: var(--border-color); background-color: var(--background-color); border-bottom: 1px solid var(--system-border-color);"
>
<button eo-ng-button nzType="primary" (click)="handleSave()">Save</button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,16 @@

.ant-tabs {
overflow: hidden;

&:not(.settings) {
.ant-tabs-content-holder {
padding-top: 35px;
}
}
}

.ant-tabs-content-holder {
padding-top: 35px;
padding-top: 12px;
padding-bottom: 8px;
margin-bottom: 0;
overflow: auto;
Expand Down
2 changes: 1 addition & 1 deletion src/workbench/browser/src/styles/antd.less
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ nz-resize-handle.container-draggable {
&.vertical {
cursor: col-resize;
width: 5px;
border-left: 2px solid var(--background-color);
border-left: 2px solid var(--tree-background-color);
border-right: 2px solid var(--background-color);

&:hover {
Expand Down

0 comments on commit d377eea

Please sign in to comment.