Skip to content

Commit

Permalink
feat: use the new v1 logo
Browse files Browse the repository at this point in the history
  • Loading branch information
ffigiel authored and lpil committed Mar 5, 2024
1 parent 4e235a6 commit ec9c3f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions priv/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ h6 {
margin-bottom: var(--gap-s);
}

.site-header a img {
.site-header .logo {
display: inline-block;
height: 1.3em;
margin-right: 0.25em;
height: 2em;
transform: rotate(-10deg);
margin-right: 0.5em;
}

.site-header nav {
Expand Down
4 changes: 2 additions & 2 deletions src/packages/web/page.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn packages_list(
html.a([attribute.href("/")], [
html.img([
attribute.class("logo"),
attribute.src("https://gleam.run/images/lucy-charcoal-2.svg"),
attribute.src("https://gleam.run/images/lucy/lucy.svg"),
attribute.alt("Lucy the star, Gleam's mascot"),
]),
html.h1([], [element.text("Gleam Packages")]),
Expand Down Expand Up @@ -193,7 +193,7 @@ fn layout(content: Element(Nil)) -> Element(Nil) {
]),
html.link([
attribute.rel("icon"),
attribute.href("https://gleam.run/images/lucy-circle.svg"),
attribute.href("https://gleam.run/images/lucy/lucy.svg"),
]),
html.script(
[
Expand Down

0 comments on commit ec9c3f6

Please sign in to comment.