From c228cde2b6c7daf1079c35df65d2c57ae6b3b101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 22 Jan 2020 07:53:24 +0100 Subject: [PATCH] Alert: Minor tweak to work with license warnings (#21654) --- packages/grafana-ui/src/components/Alert/_Alert.scss | 6 ++++++ packages/grafana-ui/src/components/index.scss | 1 + 2 files changed, 7 insertions(+) diff --git a/packages/grafana-ui/src/components/Alert/_Alert.scss b/packages/grafana-ui/src/components/Alert/_Alert.scss index 628d0718113..98b65ebd295 100644 --- a/packages/grafana-ui/src/components/Alert/_Alert.scss +++ b/packages/grafana-ui/src/components/Alert/_Alert.scss @@ -54,6 +54,7 @@ background: none; display: flex; align-items: center; + .fa { align-self: flex-end; font-size: 21px; @@ -78,6 +79,11 @@ .alert-body { flex-grow: 1; + + a { + color: $white; + text-decoration: underline; + } } .alert-icon-on-top { diff --git a/packages/grafana-ui/src/components/index.scss b/packages/grafana-ui/src/components/index.scss index af9d68e4745..c22a9f5406c 100644 --- a/packages/grafana-ui/src/components/index.scss +++ b/packages/grafana-ui/src/components/index.scss @@ -14,3 +14,4 @@ @import 'TimePicker/TimeOfDayPicker'; @import 'Tooltip/Tooltip'; @import 'ValueMappingsEditor/ValueMappingsEditor'; +@import 'Alert/Alert';