new uptime monitors + half-completed create container deployment flow

This commit is contained in:
Nicholas Orlowsky 2023-01-17 01:06:38 -06:00
parent ddb20ee17c
commit 847d11c841
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
16 changed files with 550 additions and 84 deletions

View file

@ -0,0 +1,28 @@
.uptime-lnk {
font-weight: bolder;
color: #2f2f2f;
text-decoration: none;
transition: .5s;
cursor: pointer;
}
.uptime-lnk:hover {
color: #e08b0d;
}
.uptime-modal {
border-radius: 20px;
border-color: transparent;
background-color: #eee;
padding: 20px;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 500px;
max-width: 100vw;
}