fix: add margin to 3 store pages

This commit is contained in:
Yang Luo
2026-04-11 22:02:05 +08:00
parent b93be2d3e2
commit e1ee2ddee8
3 changed files with 3 additions and 3 deletions

View File

@@ -341,7 +341,7 @@ class ProductStorePage extends React.Component {
render() {
return (
<div>
<div style={{padding: "16px"}}>
<FloatingCartButton
itemCount={this.state.cartItemCount}
onClick={() => this.props.history.push("/cart")}

View File

@@ -215,7 +215,7 @@ class ServerStorePage extends React.Component {
const filteredServers = this.getFilteredOnlineServers();
return (
<div>
<div style={{padding: "16px"}}>
<div style={{display: "flex", gap: "8px", marginBottom: "12px"}}>
<Input
allowClear

View File

@@ -20,7 +20,7 @@ const ShortcutsPage = () => {
};
return (
<div style={{display: "flex", justifyContent: "center", flexDirection: "column", alignItems: "center"}}>
<div style={{display: "flex", justifyContent: "center", flexDirection: "column", alignItems: "center", padding: "16px"}}>
<GridCards items={getItems()} />
</div>
);