diff --git a/front/index.html b/front/index.html index 70e7b83..9c1b116 100644 --- a/front/index.html +++ b/front/index.html @@ -17,6 +17,7 @@ } .connection-management { display: flex; + flex-direction: row; gap: 5px; margin-bottom: 5px; } @@ -39,6 +40,24 @@ flex-grow: 1; } + .actionbuttons { + display: flex; + gap: 5px; + flex-grow: 1 + } + + #port-select { + min-width: 0px; + } + + #sender { + min-width: 0px; + } + + #console-input { + min-width: 0px; + } + .p-console { width: 100%; } @@ -92,6 +111,11 @@ background-color: blue; color: white; } + @media screen and (max-width: 380px) { + .connection-management { + flex-direction: column; + } + } @@ -100,6 +124,7 @@ +