diff --git a/src/app/shared/components/search-drawer/search-drawer.component.html b/src/app/shared/components/search-drawer/search-drawer.component.html index da6a8c17..2822fe11 100644 --- a/src/app/shared/components/search-drawer/search-drawer.component.html +++ b/src/app/shared/components/search-drawer/search-drawer.component.html @@ -1,14 +1,17 @@ -
- +
-
- - - +
+ +
+ + +
\ No newline at end of file diff --git a/src/app/shared/components/search-drawer/search-drawer.component.ts b/src/app/shared/components/search-drawer/search-drawer.component.ts index 3e8b30fd..27760bc7 100644 --- a/src/app/shared/components/search-drawer/search-drawer.component.ts +++ b/src/app/shared/components/search-drawer/search-drawer.component.ts @@ -10,7 +10,7 @@ import { SearchDrawerService } from './search-drawer.service'; }) export class SearchDrawerComponent implements OnInit, AfterViewInit { @ViewChild('sf', { static: false }) sf!: SFComponent; - ui: SFUISchema = { '*': { spanLabelFixed: 95, grid: { span: 24, gutter: 4 } } }; + ui: SFUISchema = { '*': { spanLabelFixed: 95, grid: { span: 12, gutter: 24 } } }; schema!: SFSchema; loading = true; diff --git a/src/style-icons-auto.ts b/src/style-icons-auto.ts index eaf98e2d..e564082f 100644 --- a/src/style-icons-auto.ts +++ b/src/style-icons-auto.ts @@ -62,6 +62,7 @@ import { MinusCircleOutline, FileTwoTone, CloudDownloadOutline, + RedoOutline } from '@ant-design/icons-angular/icons'; export const ICONS_AUTO = [ @@ -123,4 +124,5 @@ export const ICONS_AUTO = [ MinusCircleOutline, FileTwoTone, CloudDownloadOutline, + RedoOutline ]; diff --git a/src/styles/theme.less b/src/styles/theme.less index 82b97923..e3baa6d9 100644 --- a/src/styles/theme.less +++ b/src/styles/theme.less @@ -28,3 +28,27 @@ .ant-card-body { padding: 16px; } + +.ant-drawer-content { + .ant-drawer-header { + padding: 16px; + + .ant-drawer-title { + font-size : 20px; + font-weight: 500; + color : #1D2129; + + + } + + } + + .ant-drawer-body { + padding: 16px; + + .ant-form-item-label>label { + color : #575D6C; + font-size: 14px; + } + } +} \ No newline at end of file