fix: make horizontal scrollbars sticky to bottom

This commit is contained in:
Simon 2026-05-07 13:08:21 +02:00
parent 01acea6838
commit 3d6081e024
Signed by: simon
GPG key ID: 40E7A58C4AA1EDB2
5 changed files with 115 additions and 1 deletions

View file

@ -3,6 +3,20 @@ defmodule MvWeb.GlobalSettingsLiveTest do
import Phoenix.LiveViewTest
alias Mv.Membership
defp clear_smtp_env do
[
"SMTP_HOST",
"SMTP_PORT",
"SMTP_SSL",
"SMTP_USERNAME",
"SMTP_PASSWORD",
"SMTP_PASSWORD_FILE",
"MAIL_FROM_EMAIL",
"MAIL_FROM_NAME"
]
|> Enum.each(&System.delete_env/1)
end
describe "Global Settings LiveView" do
setup %{conn: conn} do
user = create_test_user(%{email: "admin@example.com"})