mirror of
https://github.com/unraid/webgui.git
synced 2026-05-05 01:09:25 -05:00
refactor: update footer layout and styles for improved responsiveness
- Restructured footer HTML to use flexbox for better alignment and spacing. - Adjusted CSS styles for #footer, including padding and box-sizing. - Removed unnecessary float properties and improved layout consistency.
This commit is contained in:
@@ -234,8 +234,6 @@ $(window).scroll(function() {
|
||||
$('.back_to_top').fadeOut(scrollDuration);
|
||||
}
|
||||
<?if ($themeHelper->isTopNavTheme()):?>
|
||||
var top = $('div#header').height()-1; // header height has 1 extra pixel to cover overlap
|
||||
$('div#menu').css($(this).scrollTop() > top ? {position:'fixed',top:'0'} : {position:'absolute',top:top+'px'});
|
||||
// banner
|
||||
$('div.upgrade_notice').css($(this).scrollTop() > 24 ? {position:'fixed',top:'0'} : {position:'absolute',top:'24px'});
|
||||
<?endif;?>
|
||||
|
||||
Reference in New Issue
Block a user