mirror of
https://github.com/airlabspl/uptimemonitor.git
synced 2025-08-14 20:29:16 +02:00
46 lines
615 B
CSS
46 lines
615 B
CSS
* {
|
|
min-width: 0;
|
|
}
|
|
|
|
html {
|
|
max-width: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.stagger {
|
|
animation-delay: calc(var(--index) * 50ms);
|
|
}
|
|
|
|
.tooltip {
|
|
--tt-bg: transparent;
|
|
--color-neutral-content: #333;
|
|
}
|
|
|
|
body {
|
|
background-color: white !important;
|
|
}
|
|
|
|
svg {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.breadcrumbs ul li:before {
|
|
content: "/" ;
|
|
border: none ;
|
|
opacity: .4;
|
|
background-color: #0000;
|
|
width: auto;
|
|
height: auto;
|
|
margin-left: .5rem;
|
|
margin-right: .75rem;
|
|
display: block;
|
|
rotate: 0deg;
|
|
}
|
|
|
|
.breadcrumbs ul li:nth-child(1):before {
|
|
content: "";
|
|
width: 0;
|
|
height: 0;
|
|
margin: 0;
|
|
} |