aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-29 09:35:14 -0700
committerGitHub <noreply@github.com>2021-07-29 09:35:14 -0700
commit00ff350cd7b84509e1e20d05ce36b87f3b8bc70f (patch)
tree74f8e81e3c56ba4631f0c617a8e1dc9878381e45
parent7c2071fbb3123be66d4468465e7528973e295918 (diff)
QR Code sharpness (#139)
* resolved issue #82 * added max and min widht at style.css * render as svg * added credits to the pt-br language and runned fmt.write Co-authored-by: ismaelpereira <ismaelfgpereira@gmail.com>
-rw-r--r--README.md29
-rw-r--r--src/components/Card.js1
-rw-r--r--src/components/style.css2
3 files changed, 18 insertions, 14 deletions
diff --git a/README.md b/README.md
index db72979..a6217ca 100644
--- a/README.md
+++ b/README.md
@@ -41,17 +41,18 @@ make fmt.write
41 41
42## Supported Languages 42## Supported Languages
43 43
44| Language | Author Credit | 44| Language | Author Credit |
45| ---------- | ------------------------------------------------- | 45| ------------------- | ------------------------------------------------- |
46| English | [bndw](https://github.com/bndw) | 46| English | [bndw](https://github.com/bndw) |
47| Chinese | [Baoyuantop](https://github.com/Baoyuantop) | 47| Chinese | [Baoyuantop](https://github.com/Baoyuantop) |
48| Spanish | [oscfdezdz](https://github.com/oscfdezdz) | 48| Spanish | [oscfdezdz](https://github.com/oscfdezdz) |
49| Portuguese | [pedrorenan](https://github.com/pedrorenan) | 49| Portuguese | [pedrorenan](https://github.com/pedrorenan) |
50| Japanese | [hatsu38](https://github.com/hatsu38) | 50| Portuguese (Brazil) | [ismaelpereira](https://github.com/ismaelpereira) |
51| Russian | [Teraskull](https://github.com/Teraskull) | 51| Japanese | [hatsu38](https://github.com/hatsu38) |
52| Ukrainian | [Teraskull](https://github.com/Teraskull) | 52| Russian | [Teraskull](https://github.com/Teraskull) |
53| Dutch | [wouterbrink](https://github.com/wouterbrink) | 53| Ukrainian | [Teraskull](https://github.com/Teraskull) |
54| French | [Divlo](https://github.com/Divlo) | 54| Dutch | [wouterbrink](https://github.com/wouterbrink) |
55| Turkish | [Riza Ergun](https://github.com/rizaergun) | 55| French | [Divlo](https://github.com/Divlo) |
56| Hindi | [Pushpender](https://github.com/PushpenderSaini0) | 56| Turkish | [Riza Ergun](https://github.com/rizaergun) |
57| Catalan | [aniol](https://github.com/aniol) | 57| Hindi | [Pushpender](https://github.com/PushpenderSaini0) |
58| Catalan | [aniol](https://github.com/aniol) |
diff --git a/src/components/Card.js b/src/components/Card.js
index f0943e2..ee9d8d4 100644
--- a/src/components/Card.js
+++ b/src/components/Card.js
@@ -94,6 +94,7 @@ export const Card = ({ direction = 'ltr' }) => {
94 } 94 }
95 value={qrvalue} 95 value={qrvalue}
96 size={175} 96 size={175}
97 renderAs="svg"
97 /> 98 />
98 99
99 <div className="inputs"> 100 <div className="inputs">
diff --git a/src/components/style.css b/src/components/style.css
index e6973f0..c9dbb54 100644
--- a/src/components/style.css
+++ b/src/components/style.css
@@ -15,6 +15,8 @@
15 15
16.qrcode { 16.qrcode {
17 margin-bottom: 1em; 17 margin-bottom: 1em;
18 max-width: 175px;
19 min-width: 175px;
18} 20}
19 21
20.hidden { 22.hidden {