mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-07-19 01:25:35 +00:00
[Web] Remove top padding on login screen for small devices
This commit is contained in:
parent
91edf275b9
commit
85f20a901d
2 changed files with 8 additions and 0 deletions
5
data/web/css/site/index.css
Normal file
5
data/web/css/site/index.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
@media (max-width: 500px) {
|
||||
#top {
|
||||
padding-top: 15px !important;
|
||||
}
|
||||
}
|
||||
|
|
@ -26,6 +26,9 @@
|
|||
if (preg_match("/debug/i", $_SERVER['REQUEST_URI'])) {
|
||||
$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>
|
||||
<?php if (strtolower(trim($DEFAULT_THEME)) != "lumen"): ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue