diff --git a/basic-styles/grid.scss b/basic-styles/grid.scss index 4b3f364..d7ec060 100644 --- a/basic-styles/grid.scss +++ b/basic-styles/grid.scss @@ -225,6 +225,18 @@ justify-content: center; } +.block { + display: block; +} + +.inline { + display: inline; +} + +.inline-block { + display: inline-block; +} + .flex-row { display: flex; justify-content: space-between; @@ -232,6 +244,15 @@ flex-wrap: wrap; } +.flex-column { + display: flex!important; + flex-direction: column; +} + +.h-100 { + height: 100%; +} + .segment { padding: $space-standard; background: rgba(0, 0, 0, 0.08); diff --git a/controls/update-highlighter.scss b/controls/update-highlighter.scss index 44bfb47..9085dbf 100644 --- a/controls/update-highlighter.scss +++ b/controls/update-highlighter.scss @@ -5,6 +5,6 @@ } @keyframes highlighter { - from {background-color: var(--color-alt-bg);} + from {background-color: transparentize($color-primary, 0.5);} to {background-color: transparent;} } \ No newline at end of file diff --git a/package.json b/package.json index 2b6362c..2d46648 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stellar-expert/ui-framework", - "version": "1.3.4", + "version": "1.3.5", "private": true, "description": "StellarExpert shared UI components library", "main": "index.js",