Skip to content

Commit ee24b48

Browse files
committed
Fix issue - Horizontal and vertical flip buttons class names are interchanged
1 parent 82953d2 commit ee24b48

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

src/css/lightgallery.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -878,11 +878,11 @@ body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object
878878
}
879879

880880
.lg-flip-hor:after {
881-
content: "\e903";
881+
content: "\e902";
882882
}
883883

884884
.lg-flip-ver:after {
885-
content: "\e902";
885+
content: "\e903";
886886
}
887887

888888
.group {
@@ -1151,5 +1151,3 @@ body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object
11511151
-o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
11521152
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
11531153
}
1154-
1155-
/*# sourceMappingURL=lightgallery.css.map */

src/sass/lg-rotate.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
}
2929
.lg-flip-hor {
3030
&:after {
31-
content: "\e903";
31+
content: "\e902";
3232
}
3333
}
3434
.lg-flip-ver {
3535
&:after {
36-
content: "\e902";
36+
content: "\e903";
3737
}
3838
}

0 commit comments

Comments
 (0)