/ src / views / board / board.module.css
board.module.css
 1  .footer {
 2    color: var(--post-mobile-abbr-text-color);
 3    padding: 15px 0 10px 5px;
 4  }
 5  
 6  .footer a, .newerPostsButton  {
 7    text-decoration: var(--button-text-decoration);
 8    color: var(--button-desktop-text-color);
 9  }
10  
11  .footer a:hover, .newerPostsButton:hover {
12    color: var(--button-desktop-text-color-hover);
13  }
14  
15  .button {
16    text-transform: capitalize;
17    color: var(--button-desktop-text-color);
18    text-decoration: var(--button-text-decoration);
19  }
20  
21  .button:hover {
22    color: var(--button-desktop-text-color-hover);
23    cursor: pointer;
24  }
25  
26  @media (max-width: 640px) {
27    .footer {
28      padding-left: 5px;
29    }
30  }