mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-10-31 17:50:11 +00:00 
			
		
		
		
	Fix scrollbar position
This commit is contained in:
		| @@ -34,35 +34,37 @@ viewContent mid _ _ model = | |||||||
|         [ id "content" |         [ id "content" | ||||||
|         , class S.content |         , class S.content | ||||||
|         ] |         ] | ||||||
|         [ div [ class "px-0 flex flex-col" ] |         [ div [ class "container mx-auto" ] | ||||||
|             [ div [ class "py-4" ] |             [ div [ class "px-0 flex flex-col" ] | ||||||
|                 [ renderForm model |                 [ div [ class "py-4" ] | ||||||
|                 ] |                     [ renderForm model | ||||||
|             , div [ class "py-0" ] |  | ||||||
|                 [ Html.map DropzoneMsg |  | ||||||
|                     (Comp.Dropzone.view2 model.dropzone) |  | ||||||
|                 ] |  | ||||||
|             , div [ class "py-4" ] |  | ||||||
|                 [ a |  | ||||||
|                     [ class S.primaryButton |  | ||||||
|                     , href "#" |  | ||||||
|                     , onClick SubmitUpload |  | ||||||
|                     ] |                     ] | ||||||
|                     [ text "Submit" |                 , div [ class "py-0" ] | ||||||
|  |                     [ Html.map DropzoneMsg | ||||||
|  |                         (Comp.Dropzone.view2 model.dropzone) | ||||||
|                     ] |                     ] | ||||||
|                 , a |                 , div [ class "py-4" ] | ||||||
|                     [ class S.secondaryButton |                     [ a | ||||||
|                     , class "ml-2" |                         [ class S.primaryButton | ||||||
|                     , href "#" |                         , href "#" | ||||||
|                     , onClick Clear |                         , onClick SubmitUpload | ||||||
|                     ] |                         ] | ||||||
|                     [ text "Reset" |                         [ text "Submit" | ||||||
|  |                         ] | ||||||
|  |                     , a | ||||||
|  |                         [ class S.secondaryButton | ||||||
|  |                         , class "ml-2" | ||||||
|  |                         , href "#" | ||||||
|  |                         , onClick Clear | ||||||
|  |                         ] | ||||||
|  |                         [ text "Reset" | ||||||
|  |                         ] | ||||||
|                     ] |                     ] | ||||||
|                 ] |                 ] | ||||||
|  |             , renderErrorMsg model | ||||||
|  |             , renderSuccessMsg (Util.Maybe.nonEmpty mid) model | ||||||
|  |             , renderUploads model | ||||||
|             ] |             ] | ||||||
|         , renderErrorMsg model |  | ||||||
|         , renderSuccessMsg (Util.Maybe.nonEmpty mid) model |  | ||||||
|         , renderUploads model |  | ||||||
|         ] |         ] | ||||||
|  |  | ||||||
|  |  | ||||||
|   | |||||||
| @@ -18,7 +18,7 @@ sidebarMenuItemActive = | |||||||
|  |  | ||||||
| content : String | content : String | ||||||
| content = | content = | ||||||
|     "container mx-auto px-2 h-screen-12 overflow-y-auto scrollbar-main scrollbar-thin" |     "w-full mx-auto px-2 h-screen-12 overflow-y-auto scrollbar-main scrollbar-thin" | ||||||
|  |  | ||||||
|  |  | ||||||
| sidebarLink : String | sidebarLink : String | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user