forked from sombochea/verdaccio-ui
fix: container breakpoint
This commit is contained in:
parent
30568bfe13
commit
60b71611ca
@ -14,7 +14,7 @@ describe('<ActionBar /> component', () => {
|
||||
url: 'https://verdaccio.tld/bugs',
|
||||
},
|
||||
dist: {
|
||||
tarball: 'https://verdaccio.tld/download'
|
||||
tarball: 'https://verdaccio.tld/download',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
@ -32,8 +32,8 @@ export default injectGlobal`
|
||||
padding: 15px;
|
||||
flex: 1;
|
||||
|
||||
@media screen and (min-width: ${breakpoints.large}px) {
|
||||
max-width: ${breakpoints.large}px;
|
||||
@media screen and (min-width: ${breakpoints.container}px) {
|
||||
max-width: ${breakpoints.container}px;
|
||||
width: 100%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
|
@ -4,6 +4,7 @@ export const breakpoints = {
|
||||
small: 576,
|
||||
medium: 768,
|
||||
large: 1024,
|
||||
container: 1240,
|
||||
xlarge: 1275,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user