nadijagr commited on
Commit
59ae4f2
1 Parent(s): 0b05fe5

Update custom.css

Browse files

Update banner styling

Files changed (1) hide show
  1. assets/css/custom.css +17 -11
assets/css/custom.css CHANGED
@@ -3,20 +3,26 @@
3
  }
4
 
5
  .anchor-container {
6
- background: #060a17;
 
 
7
  bottom: 0;
 
8
  display: flex;
9
- font-weight: 600;
10
- gap: 2rem;
11
- padding: 4px;
12
- place-content: baseline center;
13
  position: fixed;
14
- width: 100%;
15
- height: 2rem;
16
  }
17
 
18
- .anchor-div {
19
- display: flex;
20
- flex-direction: row;
21
- justify-content: center;
 
 
 
 
22
  }
 
3
  }
4
 
5
  .anchor-container {
6
+ align-items: center;
7
+ background: var(--text-primary);
8
+ border-top-left-radius: 8px;
9
  bottom: 0;
10
+ color: var(--text-contrast-primary);
11
  display: flex;
12
+ font-size: 0.8rem;
13
+ font-weight: 500;
14
+ height: 24px;
15
+ padding: 0 12px;
16
  position: fixed;
17
+ right: 0;
 
18
  }
19
 
20
+ .anchor-container:focus,
21
+ .anchor-container:hover {
22
+ background: var(--text-secondary);
23
+ color: var(--text-contrast-primary);
24
+ }
25
+
26
+ img#banner {
27
+ height: 16px;
28
  }