diff --git a/app/assets/styles/general.css b/app/assets/styles/general.css index 1028fda..b320d00 100755 --- a/app/assets/styles/general.css +++ b/app/assets/styles/general.css @@ -188,4 +188,10 @@ a:has(button) { .grow { flex-grow: 1; height: var(--padding-s); +} + +.back { + display: inline-flex; + align-items: center; + gap: var(--padding-default); } \ No newline at end of file diff --git a/app/assets/styles/page.css b/app/assets/styles/page.css index 7dd7b75..345902b 100644 --- a/app/assets/styles/page.css +++ b/app/assets/styles/page.css @@ -50,11 +50,7 @@ background: var(--color-lightest); height: 100%; - h1:first-of-type, - h2:first-of-type, - h3:first-of-type, - p:first-of-type, - figure:first-of-type { + & :is(h1, h2, h3, p, figure):first-of-type { margin-top: 0; } } @@ -74,7 +70,31 @@ position: absolute; } -.Legal { +.Legal, .Wissen { padding: var(--padding-l) var(--padding-default); color: var(--color-darkest); + + & ul { + margin: 0 0 0 var(--padding-default); + } + + & a { + color: var(--color-main-dark); + text-decoration: none; + transition: var(--transition-default); + + &:hover { + color: var(--color-main-darkest); + } + } +} + +ul.link-liste { + list-style: none; + margin: var(--padding-default) 0 0; + + & a { + text-decoration: none; + color: var(--color-text) + } } \ No newline at end of file diff --git a/app/components/Pp/Navigation.vue b/app/components/Pp/Navigation.vue index 9e88fb8..3934ca6 100644 --- a/app/components/Pp/Navigation.vue +++ b/app/components/Pp/Navigation.vue @@ -7,7 +7,7 @@