Skip to content

Commit

Permalink
fix: slider is accessible (#1467)
Browse files Browse the repository at this point in the history
  • Loading branch information
derschnee68 authored Feb 14, 2024
1 parent 0acda9e commit 0cd8f3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@

<!-- navigation in case of compound object: previous and next page -->
<div class="navigation vertical previous" *ngIf="compoundNavigation">
<button mat-button [disabled]="compoundNavigation.page <= 1" (click)="openPage(compoundNavigation.page - 1)">
<button
mat-button
[disabled]="compoundNavigation.page <= 1"
(click)="openPage(compoundNavigation.page - 1)"
class="full-size">
<mat-icon>keyboard_arrow_left</mat-icon>
</button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
top: $panel-height;
&.previous {
left: 0;
top: calc(50% + 2px);
}
&.next {
right: 0;
Expand Down

0 comments on commit 0cd8f3d

Please sign in to comment.