Fix tooltip font size

gr-tooltip was already using rems before recent font size changes.
Because the root font size was originally larger, this inadvertantly
shrunk the size of gr-tooltip-text.

This is fixed by using one of the new canned font sizes.

Change-Id: I7fc7c97a1e69c2ffbd6d25b601f099132c8e3013
This commit is contained in:
Becky Siegel
2018-01-30 10:36:15 -08:00
parent d93390efd8
commit 6c23556d2c

View File

@@ -27,7 +27,7 @@ limitations under the License.
background-color: var(--tooltip-background-color, #333);
box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
color: #fff;
font-size: .75rem;
font-size: var(--font-size-small);
position: absolute;
z-index: 1000;
max-width: var(--tooltip-max-width);