Skip to content

Commit

Permalink
Rounding next photo button #587
Browse files Browse the repository at this point in the history
  • Loading branch information
bpatrik committed Aug 5, 2023
1 parent cac921e commit 7b5e187
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@
font-size: xx-large;
left: 0;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 5px !important;
}

.navigation-arrow span {
top: 20px;
vertical-align: bottom;
}

#controllers-container {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@

</div>

<div [class.dim-controls]="controllersDimmed" class="navigation-arrow highlight"
<div [class.dim-controls]="controllersDimmed" class="navigation-arrow highlight rounded-end"
*ngIf="navigation.hasPrev && zoom == 1" title="key: left arrow" id="leftArrow" i18n-title
(click)="previousPhoto.emit()"><span
class="oi oi-chevron-left"></span></div>
<div [class.dim-controls]="controllersDimmed" class="navigation-arrow highlight"
<div [class.dim-controls]="controllersDimmed" class="navigation-arrow highlight rounded-start"
*ngIf="navigation.hasNext && zoom == 1" title="key: right arrow" id="rightArrow" i18n-title
(click)="nextMediaManuallyTriggered()">
<span class="oi oi-chevron-right"></span>
Expand Down

0 comments on commit 7b5e187

Please sign in to comment.