mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-25 05:44:13 -05:00
misc timeline fixes
This commit is contained in:
parent
0ed82b35c8
commit
be9175aa64
2 changed files with 9 additions and 1 deletions
|
@ -8,7 +8,13 @@ require('./timeline-card.scss');
|
||||||
|
|
||||||
const TimelineCard = props => (
|
const TimelineCard = props => (
|
||||||
<div className={classNames('timeline-card', props.className)}>
|
<div className={classNames('timeline-card', props.className)}>
|
||||||
<a href={props.link}><img src="../../images/annual-report/2020/Symbols-UI/Open Link.svg" /></a>
|
<a
|
||||||
|
href={props.link}
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<img src="../../images/annual-report/2020/Symbols-UI/Open Link.svg"/>
|
||||||
|
</a>
|
||||||
<h5>{props.date}</h5>
|
<h5>{props.date}</h5>
|
||||||
<h4>{props.title}</h4>
|
<h4>{props.title}</h4>
|
||||||
<p>{props.text}</p>
|
<p>{props.text}</p>
|
||||||
|
|
|
@ -1341,6 +1341,8 @@ img.comment-viz{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 485px;
|
max-width: 485px;
|
||||||
margin-top: -70px;
|
margin-top: -70px;
|
||||||
|
z-index: 1;
|
||||||
|
position: relative;
|
||||||
p{
|
p{
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue