Files
dspace-angular/src/themes/custom/app/shared/log-in/log-in.component.ts
Alexandre Vryghem b8079a350c New themed components & minor CSS fixes (#2442)
* 100839: Created themeable BrowseByComponent

* 100839: Added themed BrowseByComponent to custom theme

* 100839: Added themed BrowseEntryListElementComponent to custom theme

* Added PersonComponent to custom theme

* Themed LogInComponent

* Fix focus on navbar using different color

* Fix ccLicense checkbox margin

* Fix long search facets name not displaying correctly

* Removed RecentItemListComponent's unnecessary float causing alignment issues when adding components underneath it

* Themed RegisterEmailFormComponent
2023-10-26 16:07:24 -05:00

13 lines
476 B
TypeScript

import { Component } from '@angular/core';
import { LogInComponent as BaseComponent } from '../../../../../app/shared/log-in/log-in.component';
@Component({
selector: 'ds-log-in',
// templateUrl: './log-in.component.html',
templateUrl: '../../../../../app/shared/log-in/log-in.component.html',
// styleUrls: ['./log-in.component.scss'],
styleUrls: ['../../../../../app/shared/log-in/log-in.component.scss'],
})
export class LogInComponent extends BaseComponent {
}