From 885ec5283155c29163bea42d7fd495cbcb17b267 Mon Sep 17 00:00:00 2001 From: ChangHyun Lee Date: Thu, 16 Mar 2017 17:36:09 +0900 Subject: [PATCH] [TIC-Web] fix the contents size of alert dialog - fix the contents size of alert dialog Change-Id: Ie858a6a1223b1faaf76f88589f754d87a4672a0b Signed-off-by: ChangHyun Lee --- public/src/css/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/public/src/css/style.css b/public/src/css/style.css index 7d7e642..2c515af 100644 --- a/public/src/css/style.css +++ b/public/src/css/style.css @@ -39,6 +39,18 @@ body { text-align: center; vertical-align: middle; } +@media(max-width:768px) { + .modal-dialog { + display: inline-block; + text-align: center; + vertical-align: middle; + width: 100%; + } +} + +.modal-body { + word-wrap: break-word; +} /* Main Navigator Bar */ .navbar-brand { -- 2.7.4