1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-15 11:11:51 +00:00
tobspr_shapez.io/src/css/states/changelog.scss

32 lines
717 B
SCSS
Raw Normal View History

2020-05-23 13:04:55 +00:00
#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);
strong {
background: $colorBlueBright;
color: #fff;
text-transform: uppercase;
@include S(padding, 1px, 2px);
@include S(margin-right, 3px);
}
2020-05-23 13:04:55 +00:00
}
}
}