[release] v0.3.1

- fix overflowing text in home page
This commit is contained in:
Yann Stepienik 2023-05-02 00:53:46 +01:00
parent 684981516d
commit 89defa2c04
2 changed files with 3 additions and 2 deletions

View file

@ -128,7 +128,7 @@ const HomePage = () => {
<Grid2 container spacing={2} style={{zIndex: 2}}>
{config && config.HTTPConfig.ProxyConfig.Routes.map((route) => {
return <Grid2 item xs={12} sm={6} md={4} lg={3} xl={2} key={route.Name}>
return <Grid2 item xs={12} sm={6} md={4} lg={3} xl={3} xxl={2} key={route.Name}>
<Box className='app' style={{padding: 10, color: 'white', background: 'rgba(0,0,0,0.35)', borderRadius: 5}}>
<Link to={getFullOrigin(route)} target="_blank" style={{textDecoration: 'none', color: 'white'}}>
<Stack direction="row" spacing={2} alignItems="center">

View file

@ -31,7 +31,8 @@ export default function ThemeCustomization({ children }) {
sm: 768,
md: 1024,
lg: 1266,
xl: 1536
xl: 1536,
xxl: 1920,
}
},
direction: 'ltr',