Fixed buy container width on Go

This commit is contained in:
Justin Ferrari 2024-12-28 17:59:31 -05:00
parent 56f56dcae1
commit 722338d3ea

View File

@ -17,7 +17,7 @@ export const TextTableTitle = styled(Typography)(({ theme }) => ({
userSelect: "none", userSelect: "none",
})); }));
export const BuyContainer = styled(Box)({ export const BuyContainer = styled(Box)(({ theme }) => ({
position: "fixed", position: "fixed",
width: "calc(100% - 14px)", width: "calc(100% - 14px)",
display: "flex", display: "flex",
@ -28,7 +28,10 @@ export const BuyContainer = styled(Box)({
padding: "18px 14px 12px 14px", padding: "18px 14px 12px 14px",
background: "#323336", background: "#323336",
zIndex: 3, zIndex: 3,
}); [theme.breakpoints.down("sm")]: {
width: "calc(100% - 2px)",
}
}));
export const BuyContainerDivider = styled(Box)(({ theme }) => ({ export const BuyContainerDivider = styled(Box)(({ theme }) => ({
position: "absolute", position: "absolute",