diff options
Diffstat (limited to 'css/footer.scss')
-rw-r--r-- | css/footer.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/css/footer.scss b/css/footer.scss index 8d0787b..9015abd 100644 --- a/css/footer.scss +++ b/css/footer.scss @@ -9,6 +9,7 @@ h1 { font-size: 2em; font-weight: bold; + text-align: center; &::after { background-color: var(--textColour); @@ -24,6 +25,8 @@ #cvrNumber { font-weight: bold; + margin: auto; + width: fit-content; } #emailAddress { @@ -40,4 +43,16 @@ max-width: calc(183em / 8); width: 100%; } + + #socials { + display: flex; + font-weight: bold; + gap: 1rem; + margin: auto; + width: fit-content; + + @media (orientation: portrait) { + flex-direction: column; + } + } } |