Add slider arrows and tab position

This commit is contained in:
Roman Pyrih
2026-02-03 12:22:04 +01:00
parent 25493bf82f
commit 26dd9c7656
7 changed files with 31 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1153,5 +1153,29 @@ body#product {
}
}
}
.owl-controls {
.owl-buttons {
.owl-prev,
.owl-next {
background: #e30613;
border-radius: 100%;
&::before {
color: #fff;
font-size: 20px;
}
}
.owl-prev {
@media (max-width: 1199px) {
left: -40px;
}
}
.owl-next {
@media (max-width: 1199px) {
right: -40px;
}
}
}
}
}
}