Prechádzať zdrojové kódy

Fix links so they aren't cut off (in SCSS)

Owen Versteeg 11 rokov pred
rodič
commit
c5408f37da
1 zmenil súbory, kde vykonal 6 pridanie a 1 odobranie
  1. 6 1
      css/theme/source/sky.scss

+ 6 - 1
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";
-// ---------------------------------------------
+// ---------------------------------------------