From 676b0a56c174515df6d4bf90b870f24f4ce4183d Mon Sep 17 00:00:00 2001 From: orbitlens Date: Wed, 26 Apr 2023 23:27:27 +0300 Subject: [PATCH] Change highlighter color, export new layout CSS class helpers: .block, .inline, .inline-block, .flex-column --- basic-styles/grid.scss | 21 +++++++++++++++++++++ controls/update-highlighter.scss | 2 +- package.json | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) 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",