Skip to content

Commit

Permalink
feat: add dashed border to canvases
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Drayling committed Jan 29, 2023
1 parent 4bab0da commit feb77db
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions apps/angular-client/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ router-outlet,
ng-component {
display: contents;
}

canvas {
border: 1px dashed;
}
Empty file.
1 change: 0 additions & 1 deletion libs/home/feature/src/lib/home-feature.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
styleUrls: ['./home-feature.component.scss'],
templateUrl: './home-feature.component.html',
imports: [ImgInputComponent, ImgOutputComponent, PushModule, IfModule],
})
Expand Down
Empty file.
1 change: 0 additions & 1 deletion libs/home/ui/src/lib/img-input/img-input.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ interface MergedFormValue {
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-img-input',
standalone: true,
styleUrls: ['./img-input.component.scss'],
templateUrl: './img-input.component.html',
imports: [ImgInputDirective, FormsModule, IfModule],
})
Expand Down
Empty file.
1 change: 0 additions & 1 deletion libs/home/ui/src/lib/img-output/img-output.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import ImgOutputDirective from './img-output.directive';
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-img-output[mergedConfig]',
standalone: true,
styleUrls: ['./img-output.component.scss'],
templateUrl: './img-output.component.html',
imports: [ImgOutputDirective, FormsModule, IfModule],
})
Expand Down

0 comments on commit feb77db

Please sign in to comment.