Compare commits
2 Commits
0b69dbfde0
...
v2.4.7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4258699b73 | ||
|
|
bfd2c59ad3 |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.6",
|
"version": "2.4.7",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.6",
|
"version": "2.4.7",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/sdk": "^0.102.0",
|
"@anthropic-ai/sdk": "^0.102.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "app-ts",
|
"name": "app-ts",
|
||||||
"version": "2.4.6",
|
"version": "2.4.7",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/server.js",
|
"main": "dist/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -1163,7 +1163,16 @@ export default function InvoiceDetail() {
|
|||||||
mb: 3,
|
mb: 3,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
|
{/* flexWrap: long document titles must drop below the Zpět button
|
||||||
|
on phones instead of overflowing the viewport. */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
gap: 2,
|
||||||
|
flexWrap: "wrap",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
component={RouterLink}
|
component={RouterLink}
|
||||||
to="/invoices?tab=issued"
|
to="/invoices?tab=issued"
|
||||||
@@ -1724,7 +1733,16 @@ export default function InvoiceDetail() {
|
|||||||
mb: 3,
|
mb: 3,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
|
{/* flexWrap: long document titles must drop below the Zpět button
|
||||||
|
on phones instead of overflowing the viewport. */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
gap: 2,
|
||||||
|
flexWrap: "wrap",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
component={RouterLink}
|
component={RouterLink}
|
||||||
to="/invoices?tab=issued"
|
to="/invoices?tab=issued"
|
||||||
|
|||||||
@@ -573,7 +573,16 @@ export default function IssuedOrderDetail() {
|
|||||||
mb: 3,
|
mb: 3,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
|
{/* flexWrap: long document titles must drop below the Zpět button on
|
||||||
|
phones instead of overflowing the viewport. */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
gap: 2,
|
||||||
|
flexWrap: "wrap",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
component={RouterLink}
|
component={RouterLink}
|
||||||
to="/orders?tab=vydane"
|
to="/orders?tab=vydane"
|
||||||
|
|||||||
@@ -620,7 +620,16 @@ export default function OfferDetail() {
|
|||||||
mb: 3,
|
mb: 3,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
|
{/* flexWrap: long document titles must drop below the Zpět button
|
||||||
|
on phones instead of overflowing the viewport. */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
gap: 2,
|
||||||
|
flexWrap: "wrap",
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Button
|
<Button
|
||||||
component={RouterLink}
|
component={RouterLink}
|
||||||
to="/offers"
|
to="/offers"
|
||||||
|
|||||||
@@ -58,7 +58,13 @@ export const theme = createTheme({
|
|||||||
h1: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
h1: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
||||||
h2: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
h2: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
||||||
h3: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
h3: { fontFamily: FONT_HEADING, fontWeight: 800 },
|
||||||
h4: { fontFamily: FONT_HEADING, fontWeight: 700 },
|
h4: {
|
||||||
|
fontFamily: FONT_HEADING,
|
||||||
|
fontWeight: 700,
|
||||||
|
// Page/detail headlines: MUI's default 2.125rem overflows phone
|
||||||
|
// viewports (long document titles + number). Scale down on xs only.
|
||||||
|
"@media (max-width:600px)": { fontSize: "1.5rem" },
|
||||||
|
},
|
||||||
h5: { fontFamily: FONT_HEADING, fontWeight: 700 },
|
h5: { fontFamily: FONT_HEADING, fontWeight: 700 },
|
||||||
h6: { fontFamily: FONT_HEADING, fontWeight: 700 },
|
h6: { fontFamily: FONT_HEADING, fontWeight: 700 },
|
||||||
button: { textTransform: "none", fontWeight: 600 },
|
button: { textTransform: "none", fontWeight: 600 },
|
||||||
|
|||||||
Reference in New Issue
Block a user