Skip to content

Commit

Permalink
Add more room for horizontal scrollbar on show menu
Browse files Browse the repository at this point in the history
  • Loading branch information
marineb committed Jan 19, 2017
1 parent 3b674d0 commit af8ebdb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/components/alt-channel-layout/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

{{#if channel.linkroll}}
{{nav-links
classNames="aligncenter tabs-header--padded alt-channel-links"
classNames="aligncenter alt-channel-links"
defaultSlug=defaultSlug
navRoot=navRoot
links=channel.linkroll
Expand Down
18 changes: 11 additions & 7 deletions app/styles/_alt-channel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,17 @@
text-transform: uppercase;
}

.list:after {
content: " ";
width: 25px;
height: 40px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0),rgba(255, 255, 255,1));
position: absolute;
right: 0;
.list {
padding: 30px 0;

&:after {
content: " ";
width: 25px;
height: 100%;
background: linear-gradient(90deg, rgba(255, 255, 255, 0),rgba(255, 255, 255,1));
position: absolute;
right: 0;
}
}
}

Expand Down
8 changes: 5 additions & 3 deletions app/styles/_story-tease.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@
width: 90%;

.flag {
@include display-flex;
@include align-items(center);
@include justify-content(center);
@include flexbox((
display: flex,
align-items: center,
justify-content: center
));

&-body {
width: auto;
Expand Down

0 comments on commit af8ebdb

Please sign in to comment.