From 8e82625c46852a81275fa8485995efca760b1abf Mon Sep 17 00:00:00 2001 From: Ron Lucke <lucke@elan-ev.de> Date: Tue, 26 Mar 2024 18:54:25 +0000 Subject: [PATCH] fix #3905 Closes #3905 Merge request studip/studip!2763 --- resources/vue/components/StudipIdentImage.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/resources/vue/components/StudipIdentImage.vue b/resources/vue/components/StudipIdentImage.vue index 80c1fa6d293..8879d1171f1 100644 --- a/resources/vue/components/StudipIdentImage.vue +++ b/resources/vue/components/StudipIdentImage.vue @@ -22,11 +22,11 @@ export default { }, width: { type: Number, - default: 270, + default: 1080, }, height: { type: Number, - default: 180, + default: 720, }, shapesMin: { type: Number, @@ -63,8 +63,8 @@ export default { const curveStart = this.randint(10, 70)/100 * this.height; const curveEnd = this.randint(10, 70)/100 * this.height; - ctx.strokeStyle = `rgba(255, 255, 255, ${this.randint(30, 40) / 100})`; - const curvedistance = this.randint(10, 20); + ctx.strokeStyle = `rgba(255, 255, 255, ${this.randint(50, 70) / 100})`; + const curvedistance = this.randint(20, 40); const xFactor = this.randint(10, 45) / 100; const yFactor = this.randint(10, 45) / 100; for (let c = 0; c < numShape * 2; c++) { @@ -244,4 +244,4 @@ export default { canvas { background-color: #fff; } -</style> \ No newline at end of file +</style> -- GitLab