2020-05-23 13:04:55 +00:00
|
|
|
#state_ChangelogState {
|
|
|
|
.content {
|
2020-07-23 06:48:23 +00:00
|
|
|
@include S(max-width, 800px);
|
2020-05-23 13:04:55 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.entry {
|
|
|
|
padding: 20px;
|
|
|
|
.version {
|
|
|
|
@include Heading;
|
|
|
|
}
|
|
|
|
.date {
|
|
|
|
@include PlainText;
|
|
|
|
&::before {
|
|
|
|
content: " | ";
|
|
|
|
}
|
|
|
|
color: #aaabaf;
|
|
|
|
}
|
|
|
|
|
|
|
|
.changes {
|
2020-05-27 14:06:48 +00:00
|
|
|
@include PlainText;
|
2020-05-23 13:04:55 +00:00
|
|
|
@include S(padding-left, 20px);
|
2020-05-24 15:49:12 +00:00
|
|
|
strong {
|
2020-05-27 13:03:36 +00:00
|
|
|
color: #aaa;
|
2020-05-24 15:49:12 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
@include S(padding, 1px, 2px);
|
|
|
|
@include S(margin-right, 3px);
|
|
|
|
}
|
2020-05-23 13:04:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|