Skip to content

Commit

Permalink
Change highlighter color, export new layout CSS class helpers: .block…
Browse files Browse the repository at this point in the history
…, .inline, .inline-block, .flex-column
  • Loading branch information
orbitlens committed Apr 26, 2023
1 parent 58f0e17 commit 676b0a5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions basic-styles/grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -225,13 +225,34 @@
justify-content: center;
}

.block {
display: block;
}

.inline {
display: inline;
}

.inline-block {
display: inline-block;
}

.flex-row {
display: flex;
justify-content: space-between;
flex-direction: row;
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);
Expand Down
2 changes: 1 addition & 1 deletion controls/update-highlighter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 676b0a5

Please sign in to comment.