This commit is contained in:
2023-02-13 00:57:26 +01:00
parent b6772fe008
commit 11db1d0aab
4 changed files with 20 additions and 5 deletions

View File

@ -1,7 +1,7 @@
.App {
text-align: center;
background-color: rgb(243, 97, 12);
height: 100vh;
}
.neben

View File

@ -4,6 +4,7 @@ const ImpressTxt = () =>
{
return (
<>
<div className='mehrspaltig'>
<p><span className="underline">Angaben gem. § 5 TMG:</span></p>
<p>&nbsp;</p>
<p>Dipl.-Ing. Peter Hoppe</p>
@ -62,7 +63,8 @@ const ImpressTxt = () =>
Inhalte unverzüglich entfernen.</p>
<p>Dieses <a href="http://www.jurarat.de/muster-impressum">Impressum</a> wurde freundlicherweise von www.jurarat.de zur
Verfügung gestellt.</p>
</>
</div>
</>
);
}
export default ImpressTxt;

View File

@ -1,4 +1,12 @@
.underline
{
text-decoration: underline;
}
.mehrspaltig
{
column-count: 2;
column-gap: 10em;
column-rule-style: double;
height: 400vh;
}