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-align: center;
} }
.text-left {
text-align: left;
}
.text-sm { .text-sm {
font-size: 0.75rem; font-size: 0.75rem;
} }

View File

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

View File

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

View File

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