mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
fix(portal): update non-root layout to use main.css (#9533)
After updating the CSS config to use `main.css` in the portal the root layout was updated, but there were a small number of one-off templates that do not use the root layout and those pages were not updated with the new `main.css` file. This commit updates those non-root templates. Fixes #9532
This commit is contained in:
@@ -17,6 +17,12 @@
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/app.css"}
|
||||
/>
|
||||
<link
|
||||
phx-track-static
|
||||
rel="stylesheet"
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/main.css"}
|
||||
/>
|
||||
<script
|
||||
defer
|
||||
phx-track-static
|
||||
|
||||
@@ -17,6 +17,12 @@
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/app.css"}
|
||||
/>
|
||||
<link
|
||||
phx-track-static
|
||||
rel="stylesheet"
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/main.css"}
|
||||
/>
|
||||
<script
|
||||
defer
|
||||
phx-track-static
|
||||
|
||||
@@ -25,6 +25,12 @@ defmodule Web.SignInHTML do
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/app.css"}
|
||||
/>
|
||||
<link
|
||||
phx-track-static
|
||||
rel="stylesheet"
|
||||
nonce={@conn.private.csp_nonce}
|
||||
href={~p"/assets/main.css"}
|
||||
/>
|
||||
</head>
|
||||
<body class="bg-neutral-50">
|
||||
<main class="h-auto pt-16">
|
||||
|
||||
Reference in New Issue
Block a user