Change media queries

This commit is contained in:
1ilit 2023-09-19 15:51:46 +03:00
parent 6509d42478
commit 884bd32515
3 changed files with 4 additions and 4 deletions

View File

@ -1204,7 +1204,7 @@ export default function ControlPanel(props) {
function toolbar() { function toolbar() {
return ( return (
<div className="py-1 px-5 flex justify-between items-center rounded-xl my-1 sm:mx-1 3xl:mx-6 select-none overflow-x-hidden toolbar-theme"> <div className="py-1 px-5 flex justify-between items-center rounded-xl my-1 sm:mx-1 xl:mx-6 select-none overflow-x-hidden toolbar-theme">
<div className="flex justify-start items-center"> <div className="flex justify-start items-center">
{layoutDropdown()} {layoutDropdown()}
<Divider layout="vertical" margin="8px" /> <Divider layout="vertical" margin="8px" />

View File

@ -110,7 +110,7 @@ export default function Shortcuts() {
alt="logo" alt="logo"
className="me-2 sm:h-[28px] md:h-[46px]" className="me-2 sm:h-[28px] md:h-[46px]"
/> />
<div className="ms-4 sm:text-base 3xl:text-lg font-semibold"> <div className="ms-4 sm:text-sm xl:text-lg font-semibold">
Keyboard shortcuts Keyboard shortcuts
</div> </div>
</div> </div>
@ -160,7 +160,7 @@ export default function Shortcuts() {
onSelect={(v) => {}} onSelect={(v) => {}}
></AutoComplete> ></AutoComplete>
</div> </div>
<div className="grid sm:grid-cols-1 lg:grid-cols-2 3xl:grid-cols-3 m-6 gap-5 select-none"> <div className="grid sm:grid-cols-1 lg:grid-cols-2 xl:grid-cols-3 m-6 gap-5 select-none">
{shortcuts.map((s, i) => ( {shortcuts.map((s, i) => (
<div className="p-3 card-theme rounded" key={i}> <div className="p-3 card-theme rounded" key={i}>
<div className="flex justify-between sm:text-sm"> <div className="flex justify-between sm:text-sm">

View File

@ -7,7 +7,7 @@ module.exports = {
screens: { screens: {
'3xl': {'max': '2047px'}, '3xl': {'max': '2047px'},
'2xl': {'max': '1535px'}, '2xl': {'max': '1535px'},
'xl': {'max': '1279px'}, 'xl': {'min': '1024px'},
'lg': {'max': '1023px'}, 'lg': {'max': '1023px'},
'md': {'max': '767px'}, 'md': {'max': '767px'},
'sm': {'max': '639px'} 'sm': {'max': '639px'}