mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2024-11-16 22:09:29 +08:00
fix some placement after reviewing it in Samsung Galaxy A51/A71
This commit is contained in:
parent
26b6bf5fbe
commit
c76aa3cee9
5 changed files with 8 additions and 6 deletions
|
@ -76,7 +76,8 @@ export default function StudentTransactionListView() {
|
|||
padding: "7px",
|
||||
margin: "0px",
|
||||
backgroundColor: colors.header_color,
|
||||
width: 550,
|
||||
width: "100%",
|
||||
maxWidth: 550,
|
||||
alignSelf: "center",
|
||||
borderRadius: "0px 0px 7px 7px",
|
||||
|
||||
|
|
|
@ -77,7 +77,8 @@ export default function TeacherTransactionListView() {
|
|||
padding: "7px",
|
||||
margin: "0px",
|
||||
backgroundColor: colors.header_color,
|
||||
width: 550,
|
||||
width: "100%",
|
||||
maxWidth: 550,
|
||||
alignSelf: "center",
|
||||
borderRadius: "0px 0px 7px 7px",
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ import NoteIcon from "@mui/icons-material/Note";
|
|||
import { colors } from "../../../styles";
|
||||
import ScienceIcon from "@mui/icons-material/Science";
|
||||
import ColorizeIcon from "@mui/icons-material/Colorize";
|
||||
import ArticleIcon from "@mui/icons-material/Article";
|
||||
import Popup from "reactjs-popup";
|
||||
import AddItemModal from "../../AddItemModal/AddItemModal";
|
||||
import AddSKUModal from "../../AddSKUModal/AddSKUModal";
|
||||
|
|
|
@ -9,7 +9,7 @@ export default function ManageEquipmentPage() {
|
|||
return (
|
||||
<div style={styles.background}>
|
||||
<Header label={"Equipment Management"} />
|
||||
<div style={{ position: "relative", zIndex: 999, marginTop: 80 , alignContent: "center", height: "100%"}}>
|
||||
<div style={{ position: "relative", zIndex: 999, marginTop: "7rem" , alignContent: "center", height: "100%"}}>
|
||||
<RestrictedComponent allow_only={"Technician"}>
|
||||
<TechnicianEquipmentButtons />
|
||||
<TechnicianLogButtons />
|
||||
|
|
|
@ -186,7 +186,7 @@ export default function TransactionsListPage() {
|
|||
Additional Members
|
||||
</TableCell>
|
||||
<TableCell align="center" style={styles.text_light}>
|
||||
Additional Members
|
||||
Equipments
|
||||
</TableCell>
|
||||
<TableCell align="center" style={styles.text_light}>
|
||||
Actions
|
||||
|
@ -461,6 +461,7 @@ export default function TransactionsListPage() {
|
|||
width: "auto",
|
||||
alignSelf: "center",
|
||||
borderRadius: "7px",
|
||||
minWidth: "65px"
|
||||
}}
|
||||
onClick={() => {
|
||||
navigate(`/view/transaction/${transaction.id}`, {
|
||||
|
@ -477,7 +478,7 @@ export default function TransactionsListPage() {
|
|||
|
||||
}}
|
||||
>
|
||||
Tap To View {"\n"} or Print
|
||||
Tap To View {"\n"} or Print this slip.
|
||||
</p>
|
||||
</button>
|
||||
</TableCell>
|
||||
|
|
Loading…
Reference in a new issue