From a28f34f85f27eae73aa053a05ae39df553df3673 Mon Sep 17 00:00:00 2001 From: William Kelso Date: Wed, 20 Aug 2025 15:04:13 -0400 Subject: [PATCH] add undershoot --- lib/Styles/Gtk/ScrolledWindow.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/Styles/Gtk/ScrolledWindow.scss b/lib/Styles/Gtk/ScrolledWindow.scss index 1d9e48b3f..516315bca 100644 --- a/lib/Styles/Gtk/ScrolledWindow.scss +++ b/lib/Styles/Gtk/ScrolledWindow.scss @@ -2,4 +2,22 @@ scrolledwindow { &.frame { border: 1px solid $border-color; } + + & > undershoot { + &.left { + background: undershoot-gradient(to right); + } + + &.right { + background: undershoot-gradient(to left); + } + + &.top { + background: undershoot-gradient(to bottom); + } + + &.bottom { + background: undershoot-gradient(to top); + } + } }