diff --git a/src/scss/cdb-components/boxes.scss b/src/scss/cdb-components/boxes.scss
index 3c104b4..77f6653 100644
--- a/src/scss/cdb-components/boxes.scss
+++ b/src/scss/cdb-components/boxes.scss
@@ -10,6 +10,7 @@
```
*/
+@import '../cdb-utilities/mixins';
@import '../cdb-variables/sizes';
@import '../cdb-variables/colors';
@@ -19,3 +20,55 @@
background: $cWhite;
box-shadow: 0 $baseSize $baseSize * 2 0 rgba(0, 0, 0, 0.16);
}
+
+/* SG
+# Boxes/Info Boxes
+
+
+```
+
+
ABOUT PREVIEW MODE
+
He's a queer man, Captain Ahab—so some thinkbut a good one. Oh, thou'lt like him well enough; no fear, no fear
+
CLOSE
+
+
+
+
+
+
ABOUT PREVIEW MODE
+
He's a queer man, Captain Ahab—so some thinkbut a good one. Oh, thou'lt like him well enough; no fear, no fear
+
+
+```
+*/
+
+.CDB-InfoBox {
+ padding: 12px 16px;
+ border-radius: 4px;
+ background: $cThirdBackground;
+ &.is-alert {
+ background: rgba($cHighlightYellow, 0.6);
+ }
+}
+
+.CDB-InfoBox-footer {
+ @include display-flex();
+ @include align-items(center);
+}
+
+.CDB-InfoBox-footerItem {
+ @include flex(1);
+}
+
+.CDB-InfoBox-footerItem--right {
+ text-align: right;
+}
diff --git a/src/scss/cdb-components/buttons.scss b/src/scss/cdb-components/buttons.scss
index 5d22cda..a862ec3 100644
--- a/src/scss/cdb-components/buttons.scss
+++ b/src/scss/cdb-components/buttons.scss
@@ -158,7 +158,6 @@ Layout Component:
.CDB-Button--secondary {
border: 1px solid $cBlue;
- background: $cWhite;
color: $cBlue;
&:hover {
diff --git a/src/scss/cdb-variables/_colors.scss b/src/scss/cdb-variables/_colors.scss
index 7c7ff2d..fc0bc81 100644
--- a/src/scss/cdb-variables/_colors.scss
+++ b/src/scss/cdb-variables/_colors.scss
@@ -29,3 +29,4 @@ $cPublic: #9BC63B;
$cLink: #FEB100;
$cPassword: #FB7B23;
$cError: #F15743;
+$cHighlightYellow: #FFFFC0;