diff options
| author | Ron Lucke <lucke@elan-ev.de> | 2024-03-26 18:54:25 +0000 |
|---|---|---|
| committer | Ron Lucke <lucke@elan-ev.de> | 2024-03-26 18:54:25 +0000 |
| commit | 8e82625c46852a81275fa8485995efca760b1abf (patch) | |
| tree | 463e1cb214ab1bfaf84b096cf7a0c202d50e5a2f | |
| parent | dcf482eee653b5cd6bca8deb6b9c08a5708ddd30 (diff) | |
fix #3905
Closes #3905
Merge request studip/studip!2763
| -rw-r--r-- | resources/vue/components/StudipIdentImage.vue | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/resources/vue/components/StudipIdentImage.vue b/resources/vue/components/StudipIdentImage.vue index 80c1fa6..8879d11 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> |
