From ce2c5ffb290eeb8f6d4cb62074ae3d558ee538ca Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Tue, 1 Feb 2022 22:36:34 +0100 Subject: [PATCH] DEV: Simplify header width css (#15746) --- app/assets/stylesheets/common/base/header.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/base/header.scss b/app/assets/stylesheets/common/base/header.scss index 7302275b13..07cffbaf11 100644 --- a/app/assets/stylesheets/common/base/header.scss +++ b/app/assets/stylesheets/common/base/header.scss @@ -14,8 +14,10 @@ backface-visibility: hidden; /** do magic for scrolling performance **/ > .wrap { - width: calc(100% - 20px); // accommodates for 10px vertical padding + box-sizing: border-box; + width: 100%; height: 100%; + .contents { display: flex; align-items: center;