mirror of
https://github.com/Qortal/q-trade.git
synced 2025-06-20 13:11:21 +00:00
Fixed buy container width on Go
This commit is contained in:
parent
56f56dcae1
commit
722338d3ea
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user