Skip to content

Commit

Permalink
fixed css bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Gordy committed Mar 8, 2014
1 parent ebc969c commit 1a6ec8d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/css/global.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 11 additions & 7 deletions assets/sass/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,19 @@ header {
@include span-columns(2, block-collapse);
}

}
a {
display: block;
padding: .5em 0 .5em 1.25em;
border-bottom: solid 1px $light-grey;
@include transition (all .2s ease-in-out);

a {
display: block;
padding: .5em 0 .5em 1.25em;
border-bottom: solid 1px $light-grey;
@include transition (all .2s ease-in-out);
&:hover {
background-color: $light-grey;
}

}

&:hover {
.selected {
background-color: $light-grey;
}

Expand Down

0 comments on commit 1a6ec8d

Please sign in to comment.