fix: remove unused vars, larger margin
parent
fcdc203017
commit
e368c26794
|
|
@ -1,14 +1,10 @@
|
||||||
import Head from 'next/head'
|
import Head from 'next/head'
|
||||||
|
|
||||||
import { Inter } from 'next/font/google'
|
import { Inter } from 'next/font/google'
|
||||||
import { MaintenanceConfig, MonitorState, MonitorTarget } from '@/types/config'
|
import { MaintenanceConfig, MonitorTarget } from '@/types/config'
|
||||||
import { KVNamespace } from '@cloudflare/workers-types'
|
|
||||||
import { maintenances, pageConfig, workerConfig } from '@/uptime.config'
|
import { maintenances, pageConfig, workerConfig } from '@/uptime.config'
|
||||||
import OverallStatus from '@/components/OverallStatus'
|
|
||||||
import Header from '@/components/Header'
|
import Header from '@/components/Header'
|
||||||
import MonitorList from '@/components/MonitorList'
|
import { Box, Button, Center, Container, Group, Select } from '@mantine/core'
|
||||||
import { Box, Button, Center, Container, Divider, Group, Select, Text } from '@mantine/core'
|
|
||||||
import MonitorDetail from '@/components/MonitorDetail'
|
|
||||||
import Footer from '@/components/Footer'
|
import Footer from '@/components/Footer'
|
||||||
import { useEffect, useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import MaintenanceAlert from '@/components/MaintenanceAlert'
|
import MaintenanceAlert from '@/components/MaintenanceAlert'
|
||||||
|
|
@ -26,16 +22,6 @@ function getSelectedMonth() {
|
||||||
return hash.split('-').splice(0, 2).join('-')
|
return hash.split('-').splice(0, 2).join('-')
|
||||||
}
|
}
|
||||||
|
|
||||||
function getIncidentHash() {
|
|
||||||
const hash = window.location.hash.replace('#', '')
|
|
||||||
const splitted = hash?.split('-')
|
|
||||||
if (hash && splitted.length >= 3) {
|
|
||||||
return splitted[2]
|
|
||||||
}
|
|
||||||
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
|
|
||||||
function filterIncidentsByMonth(
|
function filterIncidentsByMonth(
|
||||||
incidents: MaintenanceConfig[],
|
incidents: MaintenanceConfig[],
|
||||||
monthStr: string
|
monthStr: string
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
.header {
|
.header {
|
||||||
height: rem(56px);
|
height: rem(56px);
|
||||||
margin-bottom: rem(40px);
|
margin-bottom: rem(100px);
|
||||||
background-color: var(--mantine-color-body);
|
background-color: var(--mantine-color-body);
|
||||||
border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
|
border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue