From 92caf4037efcdb8da9df637de0b4736777f8ad6b Mon Sep 17 00:00:00 2001 From: Luke Heath Date: Thu, 16 Feb 2023 11:32:53 -0600 Subject: [PATCH] Apply styling to empty states in select query modal (#9871) --- .../modals/SelectQueryModal/_styles.scss | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/frontend/pages/hosts/details/HostDetailsPage/modals/SelectQueryModal/_styles.scss b/frontend/pages/hosts/details/HostDetailsPage/modals/SelectQueryModal/_styles.scss index bad5816a55..bc4ccc0af3 100644 --- a/frontend/pages/hosts/details/HostDetailsPage/modals/SelectQueryModal/_styles.scss +++ b/frontend/pages/hosts/details/HostDetailsPage/modals/SelectQueryModal/_styles.scss @@ -10,6 +10,30 @@ } } + &__modal{ + .info { + &__header { + display: block; + color: $core-fleet-black; + font-weight: $bold; + font-size: $x-small; + text-align: center; + } + + &__data { + display: block; + color: $core-fleet-black; + font-weight: normal; + font-size: $x-small; + text-align: center; + margin-top: 10px; + } + } + .modal-cta-wrap { + justify-content: center; + } + } + &__query-modal { display: flex; }