Skip to content

Commit

Permalink
Adjust sizing on slick slider controls.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimisgold committed Jun 28, 2024
1 parent c505c65 commit 665139b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
13 changes: 10 additions & 3 deletions css/sass/_screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,6 @@ footer {

#home #featured-slides {
margin: 0 0 (2 * $base-line-height);
background-color: $gray;
position: relative;
}

Expand Down Expand Up @@ -1025,6 +1024,10 @@ footer {
}
}

#featured .slick-list {
padding-bottom: $spacing-l;
}

#featured .slick-slide {
min-height: 50vh;
}
Expand All @@ -1041,17 +1044,21 @@ footer {

#featured .slick-dots li {
display: inline-block;
margin: 0 .75em;
vertical-align: 6px;
}

#featured .slick-dots button {
background-color: $gray;
width: 24px;
height: 24px;
width: 16px;
height: 16px;
border-radius: 24px;
text-indent: -9999px;
border: 0;
cursor: pointer;
margin: 0 .5em;
min-height: 0;
min-width: 0;
}

#featured .slick-dots .slick-active button {
Expand Down
14 changes: 11 additions & 3 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,6 @@ nav ul {
@media screen {
#home #featured-slides {
margin: 0 0 48px;
background-color: #dedede;
position: relative;
}
}
Expand Down Expand Up @@ -1460,6 +1459,11 @@ nav ul {
outline: solid;
}
}
@media screen {
#featured .slick-list {
padding-bottom: 24px;
}
}
@media screen {
#featured .slick-slide {
min-height: 50vh;
Expand All @@ -1479,18 +1483,22 @@ nav ul {
@media screen {
#featured .slick-dots li {
display: inline-block;
margin: 0 0.75em;
vertical-align: 6px;
}
}
@media screen {
#featured .slick-dots button {
background-color: #dedede;
width: 24px;
height: 24px;
width: 16px;
height: 16px;
border-radius: 24px;
text-indent: -9999px;
border: 0;
cursor: pointer;
margin: 0 0.5em;
min-height: 0;
min-width: 0;
}
}
@media screen {
Expand Down

0 comments on commit 665139b

Please sign in to comment.