Skip to content

Commit

Permalink
Fix layout issues when more than 5 apps are available.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlkuesters committed Feb 18, 2021
1 parent 1d734de commit 30b42ec
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "destrostudios",
"version": "1.1.3",
"version": "1.1.4",
"description": "destrostudios cross-game launcher, offering the possibility to login, download, update and start games.",
"author": "destrostudios",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/store/store.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ <h1>{{ ('FEATURED' | translate) + ': ' }}</h1>
<div class="featured-title">{{featuredApp.name}}</div>
</a>
<div class="container">
<h1 translate="ALL"></h1>
<h1>{{ ('ALL' | translate) + ': ' }}</h1>
<div class="all">
<a *ngFor="let app of (apps | async)"
[routerLink]="'/store/' + app.id">
Expand Down
4 changes: 3 additions & 1 deletion src/app/pages/store/store.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ main {
}

.featured {
flex-grow: 1;
flex-shrink: 0;
flex-basis: 209px;
padding: $baseline-2 25px;
text-decoration: none;

Expand All @@ -28,6 +29,7 @@ main {
.container {
padding: $baseline-2 25px $baseline-2 25px;
background: #000000F0;
overflow-y: scroll;
}

.all {
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "destrostudios",
"version": "1.1.3",
"version": "1.1.4",
"description": "Destrostudios cross-game launcher, offering the possibility to login, download, update and start games.",
"author": "destrostudios",
"main": "electron-main.js",
Expand Down

0 comments on commit 30b42ec

Please sign in to comment.