mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

* 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
13 lines
476 B
TypeScript
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 {
|
|
}
|