Alignment updates

This commit is contained in:
Michael Fatemi 2020-11-29 01:12:57 -05:00
parent eae7f6ab8e
commit 704fb43ac4
4 changed files with 8 additions and 2 deletions

View File

@ -27,6 +27,10 @@
text-align: center;
}
.text-left {
text-align: left;
}
.text-sm {
font-size: 0.75rem;
}

View File

@ -1,6 +1,6 @@
export default function GetInvolvedRow({ way }: { way: SGA.GetInvolvedWay}) {
return (
<div className='row'>
<div className='row text-left'>
<div className='get-involved-title'>
<h3>{way.title}</h3>
</div>

View File

@ -7,7 +7,7 @@ export default function InfoColumn({ title, content, imageURL, infoURL }) {
<h3>{title}</h3>
<img src={imageURL} alt={title} />
<p className='segment-body'>{content}</p>
<Link to={infoURL} className='segment-button'>
<Link to={infoURL} className='blue-button'>
MORE INFO
</Link>
</div>

View File

@ -1,5 +1,6 @@
.segment {
padding: 0px 17px;
text-align: center;
}
.segment-body {
@ -7,4 +8,5 @@
font-size: 22px;
line-height: 33px;
font-weight: 300;
text-align: left;
}