Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
Fix carousel overflowing into sibling grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzie committed Dec 24, 2020
1 parent 21e3edd commit f8f13cb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Generated/github.user.styl
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1
5 changes: 5 additions & 0 deletions Theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f8f13cb

Please sign in to comment.