Skip to content

Commit

Permalink
Fix/nozzle over200 (#46)
Browse files Browse the repository at this point in the history
* Fix layout issue

* Adjust travis config once again to do linting in PRs

* Change dependabot update strategy to live, as daily does not bundle
  • Loading branch information
UnchartedBull authored Jul 17, 2019
1 parent 265c832 commit 40df54d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .dependabot/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ update_configs:
dependency_type: all
directory: "/"
package_manager: javascript
update_schedule: daily
update_schedule: live
default_labels: ["dependencies"]
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ install:
jobs:
include:
- stage: lint
if: type = pull_request OR type = push AND branch = master
name: "Linting Angular Application ..."
if: branch = master
name: "Linting Application ..."
script: ng lint
- stage: build
if: type = push AND branch != master
name: "Building Angular Application ..."
if: type = push AND branch != master OR type = pull_request
name: "Building Application ..."
script: npm run ng:build
- stage: build
if: type = push AND branch = master
name: "Building Electron Application ..."
name: "Building Application ..."
script: npm run pack
- stage: deploy
if: type = push AND branch = master
name: "Deploying GitHub Releases ..."
name: "Deploying..."
script:
- |
git config --global user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/app/printer-status/printer-status.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

&-1 {
width: 27vw;
width: 29vw;
padding-left: 1vw;
padding-right: 8.5vw;
}
Expand Down

0 comments on commit 40df54d

Please sign in to comment.