From 220f2eb45110a683b5e294b9178a21665eedc536 Mon Sep 17 00:00:00 2001 From: leamsigc Date: Tue, 3 May 2022 21:24:58 +0200 Subject: [PATCH] Problem: - When user are reading the documentation, there is a horizontal scrolling. Solution: - Prevent scroll x on mibile view --- DOCUMENTATION/static/custom-style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DOCUMENTATION/static/custom-style.css b/DOCUMENTATION/static/custom-style.css index d25a5ac1..6e20a8dd 100644 --- a/DOCUMENTATION/static/custom-style.css +++ b/DOCUMENTATION/static/custom-style.css @@ -1,5 +1,7 @@ /* Custom CSS */ - +.article{ + overflow-x:hidden; +} .article a { border-bottom: none; }