Skip to content

Commit

Permalink
Style updates, 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed May 13, 2019
1 parent d18b307 commit f48d2c6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ export default class App extends React.Component {
<div id="root">
<div id="embed">
</div>
<div id="expand-button" className="sk-button neutral no-border" onClick={this.toggleHeight.bind(this)}>
<div className="sk-label">{this.state.expanded ? "Collapse" : "Expand"}</div>
<div id="expand-button" className="sk-button sk-secondary no-border" onClick={this.toggleHeight.bind(this)}>
<div className="sk-label">{this.state.expanded ? "" : ""}</div>
</div>
</div>
);
Expand Down
1 change: 1 addition & 0 deletions app/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ html, body {
position: absolute;
top: 1.1rem;
right: 2rem;
box-shadow: #00000036 0 0 10px;
}
3 changes: 2 additions & 1 deletion dist/dist.css
Original file line number Diff line number Diff line change
Expand Up @@ -2055,4 +2055,5 @@ html, body {
#expand-button {
position: absolute;
top: 1.1rem;
right: 2rem; }
right: 2rem;
box-shadow: #00000036 0 0 10px; }
4 changes: 2 additions & 2 deletions dist/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -1153,11 +1153,11 @@ var App = function (_React$Component) {
_react2.default.createElement("div", { id: "embed" }),
_react2.default.createElement(
"div",
{ id: "expand-button", className: "sk-button neutral no-border", onClick: this.toggleHeight.bind(this) },
{ id: "expand-button", className: "sk-button sk-secondary no-border", onClick: this.toggleHeight.bind(this) },
_react2.default.createElement(
"div",
{ className: "sk-label" },
this.state.expanded ? "Collapse" : "Expand"
this.state.expanded ? "" : ""
)
)
);
Expand Down
2 changes: 1 addition & 1 deletion dist/dist.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sn-filesafe",
"version": "2.0.0",
"version": "2.0.1",
"main": "dist/dist.js",
"scripts": {
"lint": "eslint --cache --ignore-path .gitignore --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
Expand Down

0 comments on commit f48d2c6

Please sign in to comment.