Browse Source

Font-weight on strong elements.

pull/214/head
connors 11 years ago
parent
commit
aa8abe75a8
  1. 4
      dist/ratchet.css
  2. 3
      lib/sass/base.scss

4
dist/ratchet.css vendored

@ -242,6 +242,10 @@ a {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
strong {
font-weight: 500;
}
.content {
position: fixed;
top: 0;

3
lib/sass/base.scss

@ -24,6 +24,9 @@ a {
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); // Removes the dark touch outlines on links
}
strong {
font-weight: $font-weight;
}
// Wrapper to be used around all content not in .bar-title and .bar-tab
.content {

Loading…
Cancel
Save