From 42d75a85e96c5bef342b75b8815fcc5c491a4905 Mon Sep 17 00:00:00 2001 From: Nick Krichevsky Date: Wed, 8 Jan 2020 21:59:57 -0500 Subject: [PATCH] Fix overflow of bose logo from margin --- static/css/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index a16f3b8..959e36e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -60,7 +60,8 @@ div.main-logo { .sponsors img { display: inline-block; margin-right: 40px; - max-width: 100%; + /* Hack to fix overflow of bose logo*/ + max-width: calc(100% - 10px); } .title-sponsors img{