fix: make create action bar full width

This commit is contained in:
a.tolmachev
2026-03-26 23:51:17 +03:00
parent 3a17f9151f
commit f0c9e0d14c
2 changed files with 7 additions and 6 deletions
+1 -5
View File
@@ -1,9 +1,5 @@
import { OperationForm } from "../../features/operation-form/operation-form";
export function OperationCreatePage() {
return (
<div className="page-stack">
<OperationForm />
</div>
);
return <OperationForm />;
}
+6 -1
View File
@@ -872,7 +872,9 @@ button {
align-items: center;
justify-content: space-between;
gap: 16px;
width: 100%;
width: calc(100% + 56px);
margin-left: -28px;
margin-right: -28px;
padding: 12px 28px;
border-radius: 0;
background: rgba(255, 255, 255, 0.9);
@@ -1160,6 +1162,9 @@ pre {
}
.sticky-action-bar {
width: calc(100% + 32px);
margin-left: -16px;
margin-right: -16px;
padding-left: 16px;
padding-right: 16px;
}