diff options
author | Owen Versteeg <owen.versteeg@live.com> | 2013-06-13 19:42:19 -0400 |
---|---|---|
committer | Owen Versteeg <owen.versteeg@live.com> | 2013-06-13 19:42:19 -0400 |
commit | c5408f37da9e12154eb8ffa49a998126059aff39 (patch) | |
tree | d64e893370e8b315261742f35d525ee066d07cfa /css/theme/source | |
parent | 6acfcad2f4f8bf49ee7fcdb5b5cd7c16991b8924 (diff) | |
download | perl-software-in-gnu-guix-c5408f37da9e12154eb8ffa49a998126059aff39.tar perl-software-in-gnu-guix-c5408f37da9e12154eb8ffa49a998126059aff39.tar.gz |
Fix links so they aren't cut off (in SCSS)
Diffstat (limited to 'css/theme/source')
-rw-r--r-- | css/theme/source/sky.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/css/theme/source/sky.scss b/css/theme/source/sky.scss index f3d7570..72a3a90 100644 --- a/css/theme/source/sky.scss +++ b/css/theme/source/sky.scss @@ -29,6 +29,11 @@ $linkColor: #3b759e; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: #134674; +// Fix links so they are not cut off +.reveal a:not(.image) { + line-height: 1.3em; +} + // Background generator @mixin bodyBackground() { @include radial-gradient( #add9e4, #f7fbfc ); @@ -38,4 +43,4 @@ $selectionBackgroundColor: #134674; // Theme template ------------------------------ @import "../template/theme"; -// ---------------------------------------------
\ No newline at end of file +// --------------------------------------------- |