From f8f13cb91f63a38c8abd916f7894b29588336b56 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 24 Dec 2020 01:41:32 +0000 Subject: [PATCH] Fix carousel overflowing into sibling grid --- Generated/github.user.styl | 6 +++++- Scripts/Version.txt | 2 +- Theme.scss | 5 +++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Generated/github.user.styl b/Generated/github.user.styl index 88a0a6d..ffe3e66 100644 --- a/Generated/github.user.styl +++ b/Generated/github.user.styl @@ -1,7 +1,7 @@ /* ==UserStyle== @name GoogleCentered(); @namespace github.com/DarkThemeHub/GoogleDarkTheme -@version 1.4.0 +@version 1.4.1 @description Google Search Engine Centered For Big Screens. @author DarkThemeHub @homepageURL https://github.com/DarkThemeHub/GoogleCentered @@ -17,6 +17,10 @@ html { .D6j0vc { width: 100% !important; } +div[data-hveid="CAgQAQ"] { + padding: 30px; + margin-left: -30px; } + /* center page */ @media only screen and (max-width: 12000px) and (min-width: 3200px) { html { diff --git a/Scripts/Version.txt b/Scripts/Version.txt index 88c5fb8..347f583 100644 --- a/Scripts/Version.txt +++ b/Scripts/Version.txt @@ -1 +1 @@ -1.4.0 +1.4.1 diff --git a/Theme.scss b/Theme.scss index ac2645f..2bfd97d 100644 --- a/Theme.scss +++ b/Theme.scss @@ -7,6 +7,11 @@ html { width: 100% !important; } +div[data-hveid="CAgQAQ"] { + padding: 30px; + margin-left: -30px; +} + @function getValInRange($min, $max, $t-param) { $val: (($t-param - 0) / (1 - 0) * ($max - $min)) + $min; @return $val;