Commit 47097b4e authored by Nawasan Wisitsingkhon's avatar Nawasan Wisitsingkhon

fix & updates: responsive for large screen;

parent 88a92b3e
...@@ -246,7 +246,7 @@ function AdminNavbar(props) { ...@@ -246,7 +246,7 @@ function AdminNavbar(props) {
return ( return (
<> <>
<AppBar position="fixed" style={{ backgroundColor: "black" }}> <AppBar position="fixed" style={{ backgroundColor: "black" }}>
<Toolbar> <Toolbar className="max-w-[1520px] 2xl:mx-auto 2xl:w-full box-border">
<Typography <Typography
variant="h6" variant="h6"
noWrap noWrap
......
...@@ -5,7 +5,7 @@ import React from "react"; ...@@ -5,7 +5,7 @@ import React from "react";
export default function Footer() { export default function Footer() {
return ( return (
<Box <Box
className="md:flex text-center justify-end items-center" className="md:flex text-center justify-end items-center max-w-[1520px] mx-auto"
sx={{ sx={{
p: 3, p: 3,
}} }}
......
...@@ -307,11 +307,11 @@ function Navbar(props) { ...@@ -307,11 +307,11 @@ function Navbar(props) {
return ( return (
<> <>
<AppBar <AppBar
className="shadow-sm bg-white/90" className="shadow-sm bg-white/90 px-0"
color="inherit" color="inherit"
position="fixed" position="fixed"
> >
<Toolbar> <Toolbar className="max-w-[1520px] 2xl:mx-auto 2xl:w-full box-border">
<Typography <Typography
variant="h6" variant="h6"
noWrap noWrap
......
...@@ -29,11 +29,10 @@ export default function ProductCard({ ...@@ -29,11 +29,10 @@ export default function ProductCard({
*/ */
return ( return (
<div <div
className="p-1 my-3 w-[300px] mx-auto inline-block bg-white rounded hover:shadow duration-300" className="p-1 my-3 w-[300px] sm:w-[270px] xl:w-[320px] mx-auto inline-block bg-white rounded hover:shadow duration-300"
sx={{ sx={{
m: 1, m: 1,
px: 1, px: 1,
width: 300,
// height: 500, // height: 500,
display: "inline-block", display: "inline-block",
}} }}
......
...@@ -7,8 +7,6 @@ import { ...@@ -7,8 +7,6 @@ import {
Box, Box,
Button, Button,
FormControl, FormControl,
FormLabel,
InputLabel,
MenuItem, MenuItem,
Paper, Paper,
Select, Select,
...@@ -89,6 +87,7 @@ export default function Member() { ...@@ -89,6 +87,7 @@ export default function Member() {
{message.message} {message.message}
</Alert> </Alert>
</Snackbar> </Snackbar>
<Box sx={{ maxWidth: 1520, mx: "auto" }}>
<Box sx={{ m: 1, textAlign: "right" }}> <Box sx={{ m: 1, textAlign: "right" }}>
<FormControl> <FormControl>
<Select <Select
...@@ -147,7 +146,9 @@ export default function Member() { ...@@ -147,7 +146,9 @@ export default function Member() {
</TableCell> </TableCell>
<TableCell sx={{ textAlign: "center" }}> <TableCell sx={{ textAlign: "center" }}>
<Button <Button
onClick={() => setDeleteState({ open: true, id: user.id })} onClick={() =>
setDeleteState({ open: true, id: user.id })
}
color="error" color="error"
> >
ลบ ลบ
...@@ -158,6 +159,7 @@ export default function Member() { ...@@ -158,6 +159,7 @@ export default function Member() {
</TableBody> </TableBody>
</Table> </Table>
</Paper> </Paper>
</Box>
{deleteState.open && ( {deleteState.open && (
<DeleteMember <DeleteMember
open={deleteState.open} open={deleteState.open}
......
...@@ -54,7 +54,7 @@ export default function Stock() { ...@@ -54,7 +54,7 @@ export default function Stock() {
if (router.query?.cat) { if (router.query?.cat) {
setCategory(router.query.cat); setCategory(router.query.cat);
} else { } else {
setCategory(''); setCategory("");
} }
}, [router]); }, [router]);
...@@ -64,7 +64,7 @@ export default function Stock() { ...@@ -64,7 +64,7 @@ export default function Stock() {
<title>รายการสินค้า | admin</title> <title>รายการสินค้า | admin</title>
</Head> </Head>
<Box> <Box>
<Box sx={{ mb: 2, textAlign: "right" }}> <Box sx={{ maxWidth: 1520, mx: "auto", mb: 2, textAlign: "right" }}>
<Button onClick={() => setModal(!modal)}> <Button onClick={() => setModal(!modal)}>
<AddShoppingCart /> <AddShoppingCart />
เพิ่มสินค้า เพิ่มสินค้า
......
...@@ -242,7 +242,7 @@ export default function Home() { ...@@ -242,7 +242,7 @@ export default function Home() {
))} ))}
</div> </div>
) : ( ) : (
<Paper className="shadow-none" sx={{ p: 2, textAlign: "center" }}> <Paper className="max-w-[1520px] mx-auto shadow-none" sx={{ p: 2, textAlign: "center" }}>
{algorithm.length ? "ไม่พบรายการ" : <CircularProgress />} {algorithm.length ? "ไม่พบรายการ" : <CircularProgress />}
</Paper> </Paper>
)} )}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment