diff --git a/src/components/ContactForm.css b/src/components/ContactForm.css index a4835b7..31bcba7 100644 --- a/src/components/ContactForm.css +++ b/src/components/ContactForm.css @@ -26,11 +26,6 @@ input[type=email], select, textarea padding-right: 4px; } -div.flexCenter -{ - display: flex; -} - /* Style the label to display next to the inputs */ .flexCenter label { @@ -109,9 +104,4 @@ div.flexCenter flex-direction: column; align-items: center; } - - .textArea - { - height: 100px; - } - \ No newline at end of file + \ No newline at end of file diff --git a/src/components/DogContactForm.tsx b/src/components/DogContactForm.tsx index 86f11c3..4c46ce5 100644 --- a/src/components/DogContactForm.tsx +++ b/src/components/DogContactForm.tsx @@ -79,7 +79,7 @@ export default function DogContactForm( return ( <> -
+
diff --git a/src/components/ImpressTxt.tsx b/src/components/ImpressTxt.tsx index 04fbaa2..c9ea5fb 100644 --- a/src/components/ImpressTxt.tsx +++ b/src/components/ImpressTxt.tsx @@ -3,8 +3,8 @@ import React from 'react'; const ImpressTxt = () => { return ( -<> -
+
+

Angaben gem. § 5 TMG:

 

Dipl.-Ing. Peter Hoppe

@@ -13,7 +13,7 @@ const ImpressTxt = () =>

 

Kontaktaufnahme:

 

-

E-Mail:

+

E-Mail: dog@hope-fly.de

 

Haftungsausschluss - Disclaimer:

 

@@ -41,7 +41,7 @@ const ImpressTxt = () => die Webseiten Dritter, die außerhalb unseres Verantwortungsbereichs liegen, würde eine Haftungsverpflichtung ausschließlich in dem Fall nur bestehen, wenn wir von den Inhalten Kenntnis erlangen und es uns technisch möglich und zumutbar wäre, die Nutzung im Falle rechtswidriger Inhalte zu verhindern.

-

Diese Haftungsausschlusserklärung gilt auch innerhalb des eigenen Internetauftrittes „Name Ihrer Domain“ +

Diese Haftungsausschlusserklärung gilt auch innerhalb des eigenen Internetauftrittes „hope-fly.de“ gesetzten Links und Verweise von Fragestellern, Blogeinträgern, Gästen des Diskussionsforums. Für illegale, fehlerhafte oder unvollständige Inhalte und insbesondere für Schäden, die aus der Nutzung oder Nichtnutzung solcherart dargestellten Informationen entstehen, haftet allein der Diensteanbieter der Seite, auf welche verwiesen @@ -64,7 +64,7 @@ const ImpressTxt = () =>

Dieses Impressum wurde freundlicherweise von www.jurarat.de zur Verfügung gestellt.

- +
); } export default ImpressTxt; diff --git a/src/components/Impressum.css b/src/components/Impressum.css deleted file mode 100644 index cd1105f..0000000 --- a/src/components/Impressum.css +++ /dev/null @@ -1,12 +0,0 @@ -.underline -{ - text-decoration: underline; -} - -.mehrspaltig -{ - column-count: 2; - column-gap: 10em; - column-rule-style: double; - height: 400vh; -} \ No newline at end of file diff --git a/src/components/Impressum.tsx b/src/components/Impressum.tsx index 69fef34..b0f1b90 100644 --- a/src/components/Impressum.tsx +++ b/src/components/Impressum.tsx @@ -1,6 +1,5 @@ import React from 'react'; import ImpressTxt from './ImpressTxt'; -import './Impressum.css' const Impressum = () => { diff --git a/src/components/Login.tsx b/src/components/Login.tsx index edabef4..bacce5c 100644 --- a/src/components/Login.tsx +++ b/src/components/Login.tsx @@ -37,7 +37,7 @@ const Login = () => const onChangeInput = (e: React.FormEvent) => { - if(e.currentTarget.type === 'email' || e.currentTarget.type === 'password') + //if(e.currentTarget.type === 'email' || e.currentTarget.type === 'password' || e.currentTarget.type === 'text') { setFormData({ ...formData, diff --git a/src/components/Qr.css b/src/components/Qr.css index 9297801..66e8d60 100644 --- a/src/components/Qr.css +++ b/src/components/Qr.css @@ -48,27 +48,6 @@ img background: #fff; } -.qrCode____ -{ - align-items: center; - display: flex; - flex-direction: column; - height: 3.7cm; - justify-content: space-evenly; - background: #fff; - width: 2.4cm; -} - -.beschreibung -{ - font-size: x-small; -} - -.vert -{ - flex-direction: row-reverse; -} - .spinBtn { display: flex; @@ -83,24 +62,6 @@ img border-width: 1px; } -.order1 -{ - order: 1; -} -.order2 -{ - order: 2; -} -.order3 -{ - order: 3; -} - -.list-container -{ - margin-top: 10px; -} - .list-item { display:flex; @@ -110,16 +71,6 @@ img cursor:move; } -.printButton, .saveButton -{ - margin-bottom: 20px; -} - -.qr-input -{ - width: 55px; -} - @media print { .qrSettings diff --git a/src/components/Qr.tsx b/src/components/Qr.tsx index f0ec6b5..88144e0 100644 --- a/src/components/Qr.tsx +++ b/src/components/Qr.tsx @@ -116,10 +116,10 @@ export default function Qr()
SCAN ME
-
- {((dog.qr_visible_items & 0b100) > 0) &&
{dog.name}
} - {((dog.qr_visible_items & 0b010) > 0) &&
{dog.phone}
} - {((dog.qr_visible_items & 0b001) > 0) &&
{dog.email}
} +
+ {((dog.qr_visible_items & 0b100) > 0) &&
{dog.name}
} + {((dog.qr_visible_items & 0b010) > 0) &&
{dog.phone}
} + {((dog.qr_visible_items & 0b001) > 0) &&
{dog.email}
}
); } @@ -329,8 +329,8 @@ export default function Qr()
Reihenfolge
-
Ändern durch Drag'n Drop
-
+
Ändern durch Drag'n Drop
+
- - + +
diff --git a/src/components/test.html b/src/components/test.html index e93893d..b9f747c 100644 --- a/src/components/test.html +++ b/src/components/test.html @@ -5,7 +5,7 @@ -
+
@@ -31,7 +31,7 @@
-