mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
Add left nav (#4705)
* Automated translation update ( bf08a04cda )
* Add Layout component wip
* finish layout implementation
* convert header to left nav
* better nav item spacing
* return source files to original glory
* lint fix
* Remove height limit on login screen
* fix top spacing on 3-panel layout
---------
Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Brent Clark <brent@backboneiq.com>
This commit is contained in:
parent
cab5f29b57
commit
cef99cba71
18 changed files with 280 additions and 201 deletions
|
|
@ -2,6 +2,7 @@ import { connect } from 'react-redux';
|
|||
import { useTranslation } from 'react-i18next';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import Layout from 'containers/Layout/Layout';
|
||||
|
||||
import './Unsupported.css';
|
||||
|
||||
|
|
@ -9,7 +10,7 @@ const Unsupported = () => {
|
|||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<div className='Unsupported'>
|
||||
<Layout className='Unsupported'>
|
||||
<Paper className='Unsupported-paper'>
|
||||
<div className='Unsupported-paper__header'>
|
||||
<Typography variant="h1">{ t('UnsupportedContainer.title') }</Typography>
|
||||
|
|
@ -18,7 +19,7 @@ const Unsupported = () => {
|
|||
|
||||
<Typography variant="subtitle2">{ t('UnsupportedContainer.subtitle2') }</Typography>
|
||||
</Paper>
|
||||
</div>
|
||||
</Layout>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue