fix overflow on note/contexts/step contents
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This commit is contained in:
		| @@ -1,6 +1,9 @@ | ||||
| # v0.1.5 | ||||
| - fix overflow on note/contexts/step contents | ||||
|  | ||||
| # v0.1.4 | ||||
| - fix docker-compose | ||||
| - fix newlines in notes/context/step contents | ||||
| - fix newlines in note/context/step contents | ||||
| - fix user invite page | ||||
| - improve tagging logic | ||||
|  | ||||
|   | ||||
| @@ -12,7 +12,7 @@ defmodule MemexWeb.Components.ContextContent do | ||||
|     ~H""" | ||||
|     <div | ||||
|       id={"show-context-content-#{@context.id}"} | ||||
|       class="input input-primary h-128 min-h-128 inline-block" | ||||
|       class="input input-primary h-128 min-h-128 inline-block overflow-x-hidden overflow-y-auto" | ||||
|       phx-hook="MaintainAttrs" | ||||
|       phx-update="ignore" | ||||
|       readonly | ||||
|   | ||||
| @@ -12,7 +12,7 @@ defmodule MemexWeb.Components.NoteContent do | ||||
|     ~H""" | ||||
|     <div | ||||
|       id={"show-note-content-#{@note.id}"} | ||||
|       class="input input-primary h-128 min-h-128 inline-block" | ||||
|       class="input input-primary h-128 min-h-128 inline-block overflow-x-hidden overflow-y-auto" | ||||
|       phx-hook="MaintainAttrs" | ||||
|       phx-update="ignore" | ||||
|       readonly | ||||
|   | ||||
| @@ -12,7 +12,7 @@ defmodule MemexWeb.Components.StepContent do | ||||
|     ~H""" | ||||
|     <div | ||||
|       id={"show-step-content-#{@step.id}"} | ||||
|       class="input input-primary h-32 min-h-32 inline-block" | ||||
|       class="input input-primary h-32 min-h-32 inline-block overflow-x-hidden overflow-y-auto" | ||||
|       phx-hook="MaintainAttrs" | ||||
|       phx-update="ignore" | ||||
|       readonly | ||||
|   | ||||
		Reference in New Issue
	
	Block a user