add styles to background element

This commit is contained in:
2023-01-25 22:07:33 -05:00
parent 5b6bd00047
commit 076d5eea18
7 changed files with 39 additions and 3 deletions

View File

@ -10,8 +10,8 @@
type="image/jpg"
href={Routes.static_path(@conn, "/images/cannery.svg")}
/>
<.live_title suffix=" | Cannery">
<%= assigns[:page_title] || "Cannery" %>
<.live_title suffix={" | #{gettext("Cannery")}"}>
<%= assigns[:page_title] || gettext("Cannery") %>
</.live_title>
<link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/css/app.css")} />
<script
@ -23,7 +23,7 @@
</script>
</head>
<body class="m-0 p-0 w-full h-full bg-white">
<body class="m-0 p-0 w-full h-full subpixel-antialiased">
<%= @inner_content %>
</body>
</html>