File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import type { Link as TypeLink } from './navbarHooks';
3434import { useNavbar } from './navbarHooks' ;
3535
3636const Logo = styled . img `
37- height: 2.143rem ;
37+ height: 1.5rem ;
3838` ;
3939export const LoadingNavbar = ( { logo } : { logo : string } ) => (
4040 < CoreUINavbar
@@ -403,6 +403,7 @@ export const Navbar = ({
403403 rightTabs . unshift ( {
404404 render : ( ) => (
405405 < Button
406+ style = { { backgroundColor : 'transparent' } }
406407 onClick = { ( ) => {
407408 setThemeMode ( switchThemeTo ) ;
408409 } }
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ const NotificationCenter = () => {
113113 const navigate = useShellHistory ( ) ;
114114 return (
115115 < div
116- style = { { position : 'relative' } }
116+ style = { { position : 'relative' } }
117117 { ...getToggleButtonProps ( {
118118 'aria-label' : 'Notification Center' ,
119119 ref : ( e : HTMLDivElement ) => {
@@ -127,7 +127,7 @@ const NotificationCenter = () => {
127127 } ) }
128128 >
129129 < Button
130- style = { isOpen ? { background : theme ?. highlight } : { } }
130+ style = { isOpen ? { background : theme ?. highlight } : { backgroundColor : 'transparent' } }
131131 icon = {
132132 < span className = "fa-layers fa-fw" >
133133 < Icon
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const SecondaryTitle = styled.div`
4444 justify-content: center;
4545 font-size: ${ fontSize . base } ;
4646 width: 250px;
47- color: ${ ( props ) => props . theme . textSecondary } ;
47+ color: ${ ( props ) => props . theme . textPrimary } ;
4848` ;
4949const TertiaryTitle = styled . div `
5050 display: flex;
@@ -184,8 +184,9 @@ const ActiveAlertTab = React.memo(
184184 startsAt : ( row1 , row2 ) => {
185185 const a = row1 ?. values ?. startsAt ;
186186 const b = row2 . values ?. startsAt ;
187- // @ts -expect-error - FIXME when you are working on it
188- return new Date ( a ) - new Date ( b ) ;
187+ const dateA = new Date ( a ) . getTime ( ) ;
188+ const dateB = new Date ( b ) . getTime ( ) ;
189+ return dateA - dateB ;
189190 } ,
190191 } ;
191192 } , [ ] ) ;
You can’t perform that action at this time.
0 commit comments