nadijagr commited on
Commit
4a14a16
·
verified ·
1 Parent(s): 421536c

Update custom.css (#8)

Browse files

- Update custom.css (72cb0331d141a27fac89225f80a3d2b0fc0ec4c6)

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