diff --git a/app/assets/styles/header.css b/app/assets/styles/header.css index 919e104..6732374 100755 --- a/app/assets/styles/header.css +++ b/app/assets/styles/header.css @@ -24,7 +24,23 @@ } & .header-text { - font-size: 1.5em; + display: flex; + align-items: center; + gap: 1rem; + + & > div { + display: flex; + flex-direction: column; + } + + & .big { + font-size: 1.5em; + } + + & .small { + font-size: .8em; + font-weight: 100; + } } & input[type="checkbox"] { diff --git a/app/assets/styles/page.css b/app/assets/styles/page.css index 37abaf1..d621995 100644 --- a/app/assets/styles/page.css +++ b/app/assets/styles/page.css @@ -68,4 +68,5 @@ .Legal { padding: var(--padding-large) var(--padding-default); + color: var(--color-darkest); } \ No newline at end of file diff --git a/app/components/Pp/Header.vue b/app/components/Pp/Header.vue index a6befae..bba771f 100755 --- a/app/components/Pp/Header.vue +++ b/app/components/Pp/Header.vue @@ -1,12 +1,13 @@