📦 EqualifyEverything / equalify

📄 Footer.module.scss · 44 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";

.footer {
  text-decoration: none;
  background: variables.$paper;
  border-top: 1px solid variables.$paper-dark;
  color: variables.$black;
  @include fonts.font-size-small;
  text-align: center;
  display: inline-flex;
  align-items: center;
  width:100%;
  margin-top: auto;
  justify-content: center;
  padding-top:variables.$spacing;
  padding-bottom:variables.$spacing;
  a, a:visited {
    display: inline-block;
    padding:variables.$spacing;
    text-decoration: none;
    color: variables.$black;
    opacity:0.8;
    display:flex;
    align-items: center;
    gap: variables.$spacing;
    transition: opacity 0.12s ease-out;
    &:hover {
      opacity: 1;
    }
  }
}

:global(body.dark) {
  .footer {
    background: variables.$dark-surface;
    border-top-color: variables.$dark-border;
    color: variables.$paper;

    a, a:visited {
      color: variables.$paper;
    }
  }
}