Made subtitles more readable after video was added.
This commit is contained in:
parent
ae7daa5588
commit
3dd74fe4a1
2 changed files with 10 additions and 2 deletions
|
|
@ -2,6 +2,7 @@ import { h, render, Component } from "preact";
|
|||
import {
|
||||
Grid,
|
||||
Container,
|
||||
Paper,
|
||||
Card,
|
||||
CardHeader,
|
||||
CardMedia,
|
||||
|
|
@ -49,7 +50,10 @@ memory footprint returning to this project in my final year of university.`,
|
|||
return (
|
||||
<Container>
|
||||
<p />
|
||||
<Typography variant="h4">Game Projects</Typography>
|
||||
<Card>
|
||||
<CardHeader title="Game Development Projects" />
|
||||
</Card>
|
||||
<p />
|
||||
<Grid container spacing={3}>
|
||||
{this.content.map((project) => {
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
import { h, render, Component } from "preact";
|
||||
import {
|
||||
Container,
|
||||
Paper,
|
||||
Card,
|
||||
CardHeader,
|
||||
CardMedia,
|
||||
|
|
@ -15,7 +16,10 @@ class WebProjects extends Component {
|
|||
return (
|
||||
<Container>
|
||||
<p />
|
||||
<Typography variant="h4">Web Development Projects</Typography>
|
||||
<Card>
|
||||
<CardHeader title="Web Development Projects" />
|
||||
</Card>
|
||||
<p />
|
||||
<Card>
|
||||
<CardHeader
|
||||
title="ramble.fm"
|
||||
|
|
|
|||
Loading…
Reference in a new issue