aboutsummaryrefslogtreecommitdiff
path: root/client/src/components/Header/Header.module.css
blob: 3fe6741cd57c3c6db0287157d0e2c6bb0b78361a (plain)
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
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 2rem;
  color: var(--color-light);
}

.header h1 {
  margin: 0;
}

.header__mini{
  color: var(--color-yellow);
}

@media screen and (max-width: 480px) {
  .header {
    margin: 0.5rem 1rem;
  }
  
  .header h1 {
    font-size: 2rem;
  }
}