From 76b8554a9c2771f842a983b8ec0127eec0c69a1e Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Thu, 9 Apr 2020 18:29:13 +0000 Subject: [PATCH] Add media query to fix problem with space-between and small windows - Legacy-Id: 17617 --- ietf/static/ietf/css/ietf.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ietf/static/ietf/css/ietf.css b/ietf/static/ietf/css/ietf.css index aed0d09d2..251cadb83 100644 --- a/ietf/static/ietf/css/ietf.css +++ b/ietf/static/ietf/css/ietf.css @@ -1019,6 +1019,13 @@ a.fc-event, .fc-event, .fc-content, .fc-title, .fc-event-container { justify-content: space-between; } +@media only screen and (max-width: 120em) { + /* if there's only room for two days, it looks a bit odd with space-between */ + .edit-meeting-schedule .edit-grid .day-flow { + justify-content: flex-start; + } +} + .edit-meeting-schedule .edit-grid .day-flow .day-label { border-bottom: 2px solid #eee; }