From 110df11da917d104b3e5d6a9bf89e91c63c9909d Mon Sep 17 00:00:00 2001 From: Sanjiv Sahayam Date: Sun, 7 May 2023 21:20:29 +1000 Subject: [PATCH] Add missing 'style' import --- docs/guide/user-auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/user-auth.md b/docs/guide/user-auth.md index 8485901c..8c8febd9 100644 --- a/docs/guide/user-auth.md +++ b/docs/guide/user-auth.md @@ -2022,7 +2022,7 @@ Here's the code we can add to our `view` function to make things look official: ```elm {3-4,18,20-30,34-115} module Layouts.Sidebar exposing (Settings, Model, Msg, layout) -import Html.Attributes exposing (alt, class, classList, src) +import Html.Attributes exposing (alt, class, classList, src, style) import Route.Path -- ...