From 08da15d044cb72fa958ecc7bc58558213317612b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 15 Mar 2015 00:57:47 +0300 Subject: [PATCH] better width/wrap for key stand --- .../9-keyboard-events/keyboard-dump.view/style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/2-ui/3-event-details/9-keyboard-events/keyboard-dump.view/style.css b/2-ui/3-event-details/9-keyboard-events/keyboard-dump.view/style.css index 65183a20..33e0a6a4 100644 --- a/2-ui/3-event-details/9-keyboard-events/keyboard-dump.view/style.css +++ b/2-ui/3-event-details/9-keyboard-events/keyboard-dump.view/style.css @@ -1,10 +1,12 @@ #kinput { font-size: 150%; - width: 600px; + width: 100%; + box-sizing: border-box; } #area { - width: 600px; + width: 100%; + box-sizing: border-box; height: 250px; border: 1px solid black; display: block; @@ -12,4 +14,5 @@ form label { display: inline; + white-space: nowrap; } \ No newline at end of file