Fix ContentUpdate styling
This commit is contained in:
parent
9e5e8b4baf
commit
5bc267f3e2
2 changed files with 13 additions and 2 deletions
|
|
@ -0,0 +1,11 @@
|
||||||
|
.Content.Version {
|
||||||
|
.Contents {
|
||||||
|
margin-bottom: $unit-3x;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Notes h4 {
|
||||||
|
font-weight: $medium;
|
||||||
|
font-size: $font-regular;
|
||||||
|
margin-bottom: $unit-2x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -117,9 +117,9 @@ const ContentUpdate = ({
|
||||||
{uncapItemSection('summon')}
|
{uncapItemSection('summon')}
|
||||||
</div>
|
</div>
|
||||||
{numNotes > 0 ? (
|
{numNotes > 0 ? (
|
||||||
<div>
|
<div className="Notes">
|
||||||
<section>
|
<section>
|
||||||
<h2>{updates('labels.updates')}</h2>
|
<h4>{updates('labels.updates')}</h4>
|
||||||
<ul className="Bare Contents">
|
<ul className="Bare Contents">
|
||||||
{[...Array(numNotes)].map((e, i) => (
|
{[...Array(numNotes)].map((e, i) => (
|
||||||
<li key={`${version}-${i}`}>
|
<li key={`${version}-${i}`}>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue