Skip to content

Commit

Permalink
Fix typo. Add side borders for alert-info message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrypisanko committed Dec 25, 2017
1 parent 6f012b1 commit fd4e08f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/app.bundled.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions docs/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1772,6 +1772,8 @@ li.sonm-select-dropdown-menu-item-divider {
font-size: 15px;
}
.sonm-alert--info {
border-left: solid 1px #d8d8d8;
border-right: solid 1px #d8d8d8;
z-index: 1;
background-color: #fcf4d1;
font-size: 15px;
Expand Down
2 changes: 2 additions & 0 deletions front/src/app/components/common/alert/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
}

&--info {
border-left: solid 1px @color-border;
border-right: solid 1px @color-border;
z-index: 1;
background-color: #fcf4d1;
font-size: 15px;
Expand Down
2 changes: 1 addition & 1 deletion front/src/app/components/layouts/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class App extends React.Component<IProps, any> {
}
</div>
<AlertList className="sonm-app__alerts"/>
<div className="sonm-alert sonm-alert--info">Wallet work in testnet! Do not use real keys, Ether or tokens.</div>
<div className="sonm-alert sonm-alert--info">Wallet works in testnet! Do not use real keys, Ether or tokens.</div>
<div className="sonm-app__content">
{children}
</div>
Expand Down

0 comments on commit fd4e08f

Please sign in to comment.