Commit 0603b3b9 authored by Ray Schamp's avatar Ray Schamp

Merge pull request #346 from rschamp/bugfix/GH-3329

Fix GH-345: Make carousel not so tall
parents 43b39feb fd584b1d
......@@ -5,6 +5,7 @@
$button-offset: $icon-size + 5px;
$box-content-offset: 20px;
margin-bottom: 0;
padding: 12px $button-offset;
.box-content & {
......@@ -28,8 +29,10 @@
content: "";
}
&.slick-disabled:before {
opacity: 1;
&.slick-disabled {
&:before {
opacity: 1;
}
}
}
......@@ -38,11 +41,11 @@
&:before {
background-image: url("/svgs/carousel/prev_ui-dark-gray.svg");
}
&:hover:before {
background-image: url("/svgs/carousel/prev_ui-blue.svg");
background-size: 90%;
&:hover {
background-image: url("/svgs/carousel/prev_ui-blue.svg");
background-size: 90%;
}
}
......@@ -56,11 +59,11 @@
&:before {
background-image: url("/svgs/carousel/next_ui-dark-gray.svg");
}
&:hover:before {
background-image: url("/svgs/carousel/next_ui-blue.svg");
background-size: 90%;
&:hover {
background-image: url("/svgs/carousel/next_ui-blue.svg");
background-size: 90%;
}
}
.box-content & {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment