From 0b6507e52a48ca606e38491315b0f3497b2702a2 Mon Sep 17 00:00:00 2001 From: cyber-dream Date: Thu, 4 May 2023 05:04:07 +0300 Subject: [PATCH] Fix bug top padding in desktop --- resources/base.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/resources/base.css b/resources/base.css index d4c0e62..405934a 100644 --- a/resources/base.css +++ b/resources/base.css @@ -50,15 +50,22 @@ body{ touch-action: manipulation; } +#applications{ + position: static; + width: 0px; + height: 0px; + visibility: hidden; +} + #windows-layer { width: 0px; height: 0px; /* position: fixed; */ - position: relative; + position: static; } #desktop-layer{ - position: absolute; + position: fixed; /* margin: 0px; */ width: 100%; height: 100%;