diff options
author | Alexander Tkachev | 2016-07-10 09:59:20 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 12518ed0bf60689e69c9f569bf90d5466cdc0551 (patch) | |
tree | 488748ac34d2814af0b9e5cfa908700d380090b9 /backends/networking | |
parent | 35b2471290d3c8dd5c1752bf826d69ee52fdaad0 (diff) | |
download | scummvm-rg350-12518ed0bf60689e69c9f569bf90d5466cdc0551.tar.gz scummvm-rg350-12518ed0bf60689e69c9f569bf90d5466cdc0551.tar.bz2 scummvm-rg350-12518ed0bf60689e69c9f569bf90d5466cdc0551.zip |
CLOUD: Fix gradient on LocalWebserver's pages
It was starting over every 100vh (each screen).
Diffstat (limited to 'backends/networking')
-rw-r--r-- | backends/networking/wwwroot.zip | bin | 230985 -> 230989 bytes | |||
-rw-r--r-- | backends/networking/wwwroot/style.css | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/backends/networking/wwwroot.zip b/backends/networking/wwwroot.zip Binary files differindex a57355e9f3..4dcb9b0dfd 100644 --- a/backends/networking/wwwroot.zip +++ b/backends/networking/wwwroot.zip diff --git a/backends/networking/wwwroot/style.css b/backends/networking/wwwroot/style.css index 59d96671db..e00a2bcd74 100644 --- a/backends/networking/wwwroot/style.css +++ b/backends/networking/wwwroot/style.css @@ -1,7 +1,7 @@ html { background: rgb(212, 117, 11); background: linear-gradient(to bottom, rgb(212, 117, 11) 0%, rgb(212, 117, 11) 36%, rgb(239, 196, 24) 100%); - height: 100vh; + min-height: 100vh; } .container { |