diff --git a/main.sass b/main.sass index 39c51c8..05ab6e3 100644 --- a/main.sass +++ b/main.sass @@ -118,6 +118,9 @@ ul @media speech display: none +.fullWidth + width: 100% + .srcLink max-width: 6rem float: right diff --git a/src/UI/Components/PriestSpellsView.fs b/src/UI/Components/PriestSpellsView.fs index 707100d..1db82c3 100644 --- a/src/UI/Components/PriestSpellsView.fs +++ b/src/UI/Components/PriestSpellsView.fs @@ -37,8 +37,10 @@ let View() = ] ] class' "scrollParent" Html.div [ - srcLink - Html.h2 "Worship" + class' "fullWidth" Html.div [ + srcLink + Html.h2 "Worship" + ] class' "scrollable" Html.ul [ for deity in filteredDeities filter model do Html.li [prop.text (deity.name + ": " + String.join ", " [for sphere in deity.spheres -> (sphere.sphere + if sphere.access = Minor then "*" else "")])]