Skip to content

Commit 0331a7c

Browse files
committed
Use transparent SVG logo in header
1 parent d4a5370 commit 0331a7c

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

fixes.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ input:focus-visible {
5757
}
5858

5959
.brand-glyph {
60+
position: relative;
6061
width: 44px;
6162
height: 44px;
6263
flex: 0 0 44px;
@@ -65,10 +66,14 @@ input:focus-visible {
6566
}
6667

6768
.brand-glyph img {
68-
width: 100%;
69-
height: 100%;
70-
object-fit: contain;
71-
transform: none;
69+
display: none;
70+
}
71+
72+
.brand-glyph::before {
73+
content: "";
74+
position: absolute;
75+
inset: 6px;
76+
background: url("assets/site/ironlog_logo.svg") center / contain no-repeat;
7277
}
7378

7479
.demo-stage {

0 commit comments

Comments
 (0)