diff --git a/README.md b/README.md index 8f66b24..f1fd34a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,9 @@ My personal webpage, and a space I'm using to learn a little web-dev. This site uses [React](https://react.dev/) with assets from [Material UI](https://mui.com/material-ui/). +I'm also using [WAVE](https://wave.webaim.org/) to ensure the website +is designed with accessibility in mind. + ## Usage I use [Yarn](https://yarnpkg.com/) to manage the project, but the steps below diff --git a/src/pages/Blog.jsx b/src/pages/Blog.jsx index 1524d13..0215589 100644 --- a/src/pages/Blog.jsx +++ b/src/pages/Blog.jsx @@ -9,6 +9,7 @@ import { ListItemButton, ListItemIcon, ListItemText, + Tooltip, Typography, } from '@mui/material'; import Markdown from 'react-markdown'; @@ -40,7 +41,7 @@ function BlogEntry({ title, subtitle, published, children }) { sx={{ p: 2, width: '100%', - textAlign: 'justify', + textAlign: 'left', display: 'flex', flexShrink: 1, flexDirection: 'column', @@ -62,7 +63,7 @@ function BlogEntry({ title, subtitle, published, children }) { sx={{ p: 2, width: '100%', - textAlign: 'justify', + textAlign: 'left', display: 'flex', flexShrink: 1, flexDirection: 'column', @@ -146,7 +147,11 @@ function Blog() { Blog