1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Allow to disable hints, add changelog

This commit is contained in:
tobspr
2020-05-23 15:04:55 +02:00
parent 5a46ba5e31
commit f03f04caa1
15 changed files with 218 additions and 14 deletions

View File

@@ -27,6 +27,7 @@
@import "states/settings";
@import "states/about";
@import "states/mobile_warning";
@import "states/changelog";
@import "ingame_hud/buildings_toolbar";
@import "ingame_hud/building_placer";

View File

@@ -0,0 +1,24 @@
#state_ChangelogState {
.content {
display: flex;
flex-direction: column;
}
.entry {
padding: 20px;
.version {
@include Heading;
}
.date {
@include PlainText;
&::before {
content: " | ";
}
color: #aaabaf;
}
.changes {
@include SuperSmallText;
@include S(padding-left, 20px);
}
}
}

View File

@@ -322,8 +322,7 @@
transform: scale(1.01);
}
&.iogLink {
// background: transparenT;
&:not(.boxLink) {
align-self: flex-end;
justify-self: flex-end;
height: unset;

View File

@@ -6,6 +6,29 @@
}
}
.changelogDialogEntry {
width: 100%;
flex-direction: column;
text-align: left;
padding: 10px;
box-sizing: border-box;
.version {
@include Heading;
}
.date {
@include PlainText;
&::before {
content: " | ";
}
color: #aaabaf;
}
.changes {
@include SuperSmallText;
@include S(padding-left, 20px);
}
}
.failureBox {
.logo {
img {