From fb1e764b0e7db0d826cf9c886c2bddbfdcf1b719 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Tue, 15 Oct 2024 10:54:06 +0100 Subject: [PATCH] move missing styles into plugin --- src/styles/_panel-triggers.scss | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/src/styles/_panel-triggers.scss b/src/styles/_panel-triggers.scss index b0f98dd..360672a 100644 --- a/src/styles/_panel-triggers.scss +++ b/src/styles/_panel-triggers.scss @@ -1,3 +1,41 @@ +.alert-rule-list { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + list-style-type: none; +} +.alert-rule-item { + display: flex; + align-items: center; + width: 100%; + height: 100%; + background: $card-background; + box-shadow: $card-shadow; + padding: 4px 8px; + border-radius: 4px; + margin-bottom: 4px; +} +.alert-rule-item__icon { + display: flex; + justify-content: center; + align-items: center; + width: 40px; + padding: 0 4px 0 2px; + .icon-gf, + .fa { + font-size: 200%; + position: relative; + top: 2px; + } +} +.alert-list__btn { + margin: 0 2px; + display: flex; + align-items: center; + justify-content: center; +} + .triggers-panel-scroll { overflow: auto; }