fixed 404 switch
This commit is contained in:
parent
70e07cf49a
commit
fcaf719529
2 changed files with 5 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
<link rel="icon" href="https://org.zaboal.name/assets/logo-playroom_green_black-border.svg" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<body class="desktop">
|
||||
<!-- ERROR_VERSION -->
|
||||
<div class="main error">
|
||||
<div class="header">
|
||||
|
|
|
@ -23,6 +23,9 @@ html, body {
|
|||
body.desktop .main.desktop {
|
||||
display: grid;
|
||||
}
|
||||
body.desktop .main.error {
|
||||
display: grid;
|
||||
}
|
||||
body.mobile .main.mobile {
|
||||
display: grid;
|
||||
}
|
||||
|
@ -95,7 +98,7 @@ body.mobile .main.mobile {
|
|||
/* ============ERROR============ */
|
||||
/* MAIN_ERROR_START */
|
||||
.main.error {
|
||||
display: grid;
|
||||
display: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: var(--main-g-color);
|
||||
|
|
Loading…
Add table
Reference in a new issue