Fix inaccessible buttons

This commit is contained in:
Emi Simpson 2022-02-05 18:56:00 -05:00
parent 0e45ebb40d
commit 3e2f92bb5d
Signed by untrusted user: Emi
GPG Key ID: 45E9C6E81BD86E7C
2 changed files with 5 additions and 2 deletions

View File

@ -71,9 +71,12 @@ header {
margin-left: auto;
margin-right: auto;
cursor: pointer;
background: none;
border: none;
padding: 0;
& > div:nth-child(2) {
padding: 5px 30px;
padding: 0 30px;
}
}

View File

@ -151,7 +151,7 @@ view_modules wrap license =
view_cooler_button : String -> msg -> Html msg
view_cooler_button name message =
div
button
[ class "cool-button"
, onClick message
]