Skip to content

Commit 00bc154

Browse files
committed
make the expando panel look better
1 parent 3abd434 commit 00bc154

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/Debugger/Main.elm

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ initialWindowWidth =
4444

4545
initialWindowHeight : Int
4646
initialWindowHeight =
47-
360
47+
420
4848

4949

5050

@@ -782,11 +782,14 @@ viewExpando expandoMsg expandoModel layout =
782782
, style "margin" "0"
783783
, style "overflow" "auto"
784784
, style "pointer-events" block
785+
, style "-webkit-user-select" block
786+
, style "-moz-user-select" block
787+
, style "-ms-user-select" block
785788
, style "user-select" block
786789
]
787-
[ div [ style "color" "#ccc" ] [ text "-- MESSAGE" ]
790+
[ div [ style "color" "#ccc", style "padding" "0 0 1em 0" ] [ text "-- MESSAGE" ]
788791
, Html.map TweakExpandoMsg <| Expando.view Nothing expandoMsg
789-
, div [ style "color" "#ccc" ] [ text "-- MODEL" ]
792+
, div [ style "color" "#ccc", style "padding" "1em 0" ] [ text "-- MODEL" ]
790793
, Html.map TweakExpandoModel <| Expando.view Nothing expandoModel
791794
]
792795

0 commit comments

Comments
 (0)