mirror of
https://github.com/graphql-hive/console
synced 2026-05-23 09:08:34 +00:00
UI fixes for large screens (#3239)
This commit is contained in:
parent
236326f70d
commit
dcdb714a72
2 changed files with 7 additions and 3 deletions
|
|
@ -356,8 +356,8 @@ export const TargetLayout = ({
|
|||
</div>
|
||||
</div>
|
||||
<div className="container pb-7 h-full">
|
||||
<div className={cn('flex justify-between gap-12', className)}>
|
||||
<div className="grow">{children}</div>
|
||||
<div className={cn('flex justify-between gap-12 h-full', className)}>
|
||||
<div className="grow flex flex-col">{children}</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,11 @@ module.exports = {
|
|||
center: true,
|
||||
padding: '2rem',
|
||||
screens: {
|
||||
'2xl': '1400px',
|
||||
sm: '100%',
|
||||
md: '100%',
|
||||
lg: '100%',
|
||||
xl: '100%',
|
||||
'2xl': '1800px',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue