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