Minor adjustments to fix Chrome bug with the hint helper
diff --git a/dev/scss/base.scss b/dev/scss/base.scss
index 1ba3213..d5a1eac 100644
--- a/dev/scss/base.scss
+++ b/dev/scss/base.scss
@@ -15,7 +15,13 @@
@include box-sizing-box;
}
+html {
+ height: 100%;
+}
+
body {
+ position: relative;
+ min-height: 100%;
font-size: 12pt;
}
@@ -32,13 +38,13 @@
&:link {
color: $dark-orange;
text-decoration: none;
- }
- &:link:hover:hover {
- color: $light-green; // $darkest-orange;
- @include color-transition;
- }
- &:active, &:visited {
- color: $darkest-orange;
+ &:hover {
+ color: $light-green; // $darkest-orange;
+ @include color-transition;
+ }
+ &:active, &:visited {
+ color: $darkest-orange;
+ }
}
}