فهرست منبع

[Web] Remove top padding on login screen for small devices

andryyy 6 سال پیش
والد
کامیت
85f20a901d
2فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 5 0
      data/web/css/site/index.css
  2. 3 0
      data/web/inc/header.inc.php

+ 5 - 0
data/web/css/site/index.css

@@ -0,0 +1,5 @@
+@media (max-width: 500px) {
+  #top {
+    padding-top: 15px !important;
+  }
+}

+ 3 - 0
data/web/inc/header.inc.php

@@ -26,6 +26,9 @@
     if (preg_match("/debug/i", $_SERVER['REQUEST_URI'])) {
     if (preg_match("/debug/i", $_SERVER['REQUEST_URI'])) {
       $css_minifier->add('/web/css/site/debug.css');
       $css_minifier->add('/web/css/site/debug.css');
     }
     }
+    if ($_SERVER['REQUEST_URI'] == '/') {
+      $css_minifier->add('/web/css/site/index.css');
+    }
   ?>
   ?>
   <style><?=$css_minifier->minify();?></style>
   <style><?=$css_minifier->minify();?></style>
   <?php if (strtolower(trim($DEFAULT_THEME)) != "lumen"): ?>
   <?php if (strtolower(trim($DEFAULT_THEME)) != "lumen"): ?>