Skip to content

Commit 3d75432

Browse files
authored
Merge pull request #72 from xpquiz/develop
v1.5.1
2 parents fb19ab6 + 444a2c2 commit 3d75432

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
{
4545
"type": "initial",
4646
"maximumWarning": "500kb",
47-
"maximumError": "1mb"
47+
"maximumError": "5mb"
4848
},
4949
{
5050
"type": "anyComponentStyle",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xpquiz.github.io",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

src/app/about-window/about-window.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="window">
22
<app-window-title-bar iconPath="about.png" title="About XPQuiz"></app-window-title-bar>
33
<div class="window-body">
4-
<label><b>XPQuiz</b>&nbsp;- Version 1.5.0</label>
4+
<label><b>XPQuiz</b>&nbsp;- Version 1.5.1</label>
55
<label class="main">Created by&nbsp;<b><a href="https://isahann.github.io">Isahann Hanacleto</a></b></label>
66

77
<label>Source code at&nbsp;<b><a href="https://github.com/xpquiz/xpquiz.github.io">GitHub</a></b></label>

src/app/game-mode-window/game-mode-window.component.sass

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66

77
&_modes
88
display: inherit
9-
flex-direction: row
109
align-items: center
1110
justify-content: center
1211

12+
@media(width < 1000px)
13+
flex-direction: column
14+
15+
@media(width > 1000px)
16+
flex-direction: row
17+
1318
app-icon-text-button
1419
margin: 5px
1520

src/app/question-trifecta-window/question-trifecta-window.component.sass

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@
3030
&_tri
3131
display: flex
3232
align-items: stretch
33-
justify-content: center
3433

3534
@media(200px < width < 1000px)
3635
flex-direction: column
36+
height: 400px
37+
overflow: auto
3738

3839
@media(width > 1000px)
3940
flex-direction: row
41+
justify-content: center
4042

4143
ul
4244
margin: 5px

0 commit comments

Comments
 (0)