forked from OpenWF/SpaceNinjaServer
		
	Includes all `Tactical Alerts` since Star Chart 3.0 with exception: `Snowday Showdown` `Wolf Hunt (2019)` (couldn't find corresponded `EventNode` for that) `Void Corruption` (that's goes into `Alerts`) All `Warframe's Anniversary` Re #1103 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Reviewed-on: OpenWF/SpaceNinjaServer#2607 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
@media (min-width: 992px) {
 | 
						|
    body.logged-in #main-view {
 | 
						|
        display: flex;
 | 
						|
    }
 | 
						|
 | 
						|
    body.logged-in #sidebar {
 | 
						|
        position: fixed;
 | 
						|
    }
 | 
						|
 | 
						|
    body.logged-in #main-content {
 | 
						|
        margin-left: 7rem;
 | 
						|
    }
 | 
						|
 | 
						|
    body.logged-in:has([data-lang="de"].active) #main-content,
 | 
						|
    body.logged-in:has([data-lang="uk"].active) #main-content {
 | 
						|
        margin-left: 8rem;
 | 
						|
    }
 | 
						|
 | 
						|
    body.logged-in:has([data-lang="zh"].active) #main-content {
 | 
						|
        margin-left: 6rem;
 | 
						|
    }
 | 
						|
 | 
						|
    body:not(.logged-in) #sidebar {
 | 
						|
        display: none;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
body:not(.logged-in) .user-dropdown {
 | 
						|
    display: none;
 | 
						|
}
 | 
						|
 | 
						|
/* font awesome icons */
 | 
						|
svg {
 | 
						|
    fill: currentColor;
 | 
						|
    height: 1em;
 | 
						|
}
 | 
						|
td.text-end > a > svg {
 | 
						|
    margin-left: 0.5em;
 | 
						|
    margin-bottom: 4px; /* to centre the icon */
 | 
						|
}
 | 
						|
 | 
						|
/* if an item name is super long, ensure it doesn't prevent the user from using actions */
 | 
						|
.card-body {
 | 
						|
    overflow: auto;
 | 
						|
}
 | 
						|
 | 
						|
/* fixes for navbar on small resolutions due to not being navbar-expand */
 | 
						|
.navbar.sticky-top .navbar-nav {
 | 
						|
    flex-direction: row;
 | 
						|
}
 | 
						|
 | 
						|
.dropdown-toggle {
 | 
						|
    padding-right: var(--bs-navbar-nav-link-padding-x);
 | 
						|
    padding-left: var(--bs-navbar-nav-link-padding-x);
 | 
						|
}
 |